NUnit 2.1 and Whidbey
Peter Golde blogs this:
I was very happy to discover that it is trivial to get NUnit 2.1 to work with the Whidbey version of the .NET runtime. If you have the PDC release, you just need to do the following:
First, create a new NUnit directory (say, "NUnit Whidbey") and copy everything from your Program FilesNUnit V2.1 directory over to the new directory. Second, open the two files "bin\nunit-console.exe.config" and "bin\nunit-gui.exe.config" inside a text editor. Right above the other lines that start with "supportedRuntime", add the following line:
<supportedRuntime version="v1.2.30703" />After that, NUnit runs just fine with Whidbey, and you can test code that uses Whidbey-only features.