vote up 9 vote down star
3

I'm trying to load a Visual Studio 2010 beta dll into the NUnit GUI. I get a popup error.

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.

How do I force an executable to run under .NET 4 beta?

flag

3 Answers

vote up 15 vote down check

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.

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.

Under <configuration> add:

<startup>
  <requiredRuntime version="v4.0.20506" />
</startup>

and under <runtime> add:

<loadFromRemoteSources enabled="true" />
link|flag
Worked like a charm. Thanks! – Ball Jun 4 at 22:12
2  
Ok, the configuration updates make it work, but I had to use version="v4.0.21006" for my requiredRuntime tag. – mkmurray Dec 24 at 0:46
vote up 1 vote down

You have to rebuild NUnit with the latest version of the clr:

NUnit for NET 4.0

link|flag
NUnit 2.5.3 has .NET 4 support according to the release notes – Sander Rijken Dec 23 at 16:34
I saw that release note as well, but I still get the original poster's error message as well. I have not yet tried the config file changes. I will report back. – mkmurray Dec 24 at 0:23
1  
Ok, the configuration updates make it work, but I had to use version="v4.0.21006" for my requiredRuntime tag. – mkmurray Dec 24 at 0:44
vote up 0 vote down

You can't.

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.

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.

Hope this helps.

link|flag
Accepted answer works – Sander Rijken Dec 23 at 16:34

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.