Data Browser - Viewing Site  Sector 23 Code Bank Logged in as:  Guest  




           


Debug NUnit in Visual Studio 2010
Breakpoints were not being hit after upgrading test project to .NET 4.0

Solution:

Added the following to the nunit.exe.config file in the GUI directory:
(under <Configuration>)

<startup>
<supportedRuntime version="4.0.30319"/>
</startup>

Note: adding this to the app.config did NOT work for some reason.

Created By: amos 6/29/2011 5:14:38 PM