NUnit Now Support .NET 2.0
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.
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>