NUnit Now Support .NET 2.0
If you're new here, you may want to subscribe to our RSS newsfeed so you don't miss out on all the information, news, tips and tricks.
Thanks for visiting!
Charlie Poole has announced a new version of NUnit that support the recently released .NET 2.0 framework.
You can download it from the NUnit site over on Sourceforge.



November 27th, 2005 at 1:01 am
Just remember that NUnit was itself build with .NET 1.1 so if you want to unit test a 2.0 assembly you have to tweak with config file a little. There is a section called startup, which is commented out by default. It needs to be uncommented. The minimum to get final release of .NET 2.0 to work is:
November 27th, 2005 at 1:02 am
Oops… The XML didn’t come through. Lets try again:
<startup>
<supportedRuntime version=”v2.0.50727″ />
</startup>