The Small Business Consultancy

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.

2 Comments on “NUnit Now Support .NET 2.0”


  • 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:


  • Oops… The XML didn’t come through. Lets try again:
    <startup>
    <supportedRuntime version=”v2.0.50727″ />
    </startup>