TestDriven.NET by Jamie Cansdale
Zero Friction Unit Testing for Visual Studio .NET
- 
Release Notes for NUnitAddIn-0.9.568
Download: NUnitAddIn-0.9.568
 - 
NUnit Add-In
You can download the latest version here.
 - 
MC++ to C++/CLI
Stan Lippman posted a link to Moving Your Programs from Managed Extensions for C++ to C++/CLI. A while back I was working on a MC++ language provider for Reflector. Unfortuantely the lack of support for jagged arrays made a lot of decompiles impossible and not having automatic boxing made others a pain. I'm looking forward to picking up the project again with C++/CLI.
 - 
MSBuild Bloggers and Resources
blar
 - 
More MSBuild
I'm keeping my MSBuild Bloggers and Resources up to date with the following entry. Let me know if I've missed anything.
 - 
Fusion Changes
Junfeng Zhang has made a number of posts recently about changes in assembly probing for .NET 2.0. Since I deal with this stuff a lot, I thought I'd better note it here to remind myself.
 - 
CLR Managed Debugger
I did a double take on this one. A managed debugger, written in (C#) managed code!
 - 
Security Implications of InternalsVisibleTo
Nat says:
I think whenever we need to use this attribute, we should make sure that we make it internally visible to a strongly named assembly. Otherwise, this is just another crack in a pot. If we want to use it with Unit Tests, I mean that Unit Tests should be strongly named. :) Otherwise, Microsoft should make it extensible so that we can make this attribute apply only if it is a debug build. What do you think, Jamie?
 - 
[InternalsVisibleTo("Microsoft.Build.Engine.Unittest")]
I was spelunking the .NET framework 2.0 and noticed the following assembly attribute on 'Microsoft.Build.Engine'.
 - 
Debugging Application Startup
Matt Pietrek has a useful tip for attaching a debugger on application startup. I'm sure this will save my skin one day. More info and fun.