NUnit isn't running VS10 code - Stack Overflow most recent 30 from stackoverflow.com2009-11-26T16:08:33Zhttp://stackoverflow.com/feeds/question/930438http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/930438/nunit-isnt-running-vs10-code4NUnit isn't running VS10 codeBall2009-05-30T19:46:46Z2009-10-21T17:58:22Z
<p>I'm trying to load a Visual Studio 2010 beta dll into the NUnit GUI. I get a popup error.</p>
<blockquote>
<p>This assembly is built by a runtime newer than the currently loaded runtime and cannot be loaded. You may be attempting to load an assembly build with a leter version of the CLR than the version under which NUnit is currently running.</p>
</blockquote>
<p>How do I force an executable to run under .NET 4 beta?</p>
http://stackoverflow.com/questions/930438/nunit-isnt-running-vs10-code/930457#9304571Answer by Burt for NUnit isn't running VS10 codeBurt2009-05-30T19:55:47Z2009-05-30T19:55:47Z<p>You can't.</p>
<p>As far as I am aware .Net executables target a specific Framework. So if NUnit is compiled against 3.5 it will not be aware of later versions. </p>
<p>What you could do is download the NUnit source code and build the solution using VS2010. There are chances that there may be compile errors but they should be slim.</p>
<p>Hope this helps.</p>
http://stackoverflow.com/questions/930438/nunit-isnt-running-vs10-code/932410#9324108Answer by Charles Cook for NUnit isn't running VS10 codeCharles Cook2009-05-31T16:37:31Z2009-05-31T18:06:06Z<p>I've downloaded the NUnit 2.5 source and opened the VS2008 solution in the VS2010 beta. Once the conversion finished I opened all the projects and changed the target framework setting for all the projects to ".NET Framework 4.0". I then built the solution without any errors. I can now use the NUnit GUI app to run tests built for .NET 4.0. I've not done exhaustive testing of this build so there may be problems, but for my purposes it works fine.</p>
<p>Update: It is not necessary to rebuild NUnit. I discovered that if you add the following to the relevant NUnit config file you can run a test dll built for .NET 4.0.</p>
<p>Under <configuration> add:</p>
<pre><code><startup>
<requiredRuntime version="v4.0.20506" />
</startup>
</code></pre>
<p>and under <runtime> add:</p>
<pre><code><loadFromRemoteSources enabled="true" />
</code></pre>
http://stackoverflow.com/questions/930438/nunit-isnt-running-vs10-code/1602481#16024811Answer by just in case for NUnit isn't running VS10 codejust in case2009-10-21T17:58:22Z2009-10-21T17:58:22Z<p>You have to rebuild NUnit with the latest version of the clr:</p>
<p><a href="http://www.justnbusiness.com/post/2009/06/11/NUnit-for-NET-40.aspx" rel="nofollow">NUnit for NET 4.0</a></p>