While converting a project that used SlimDX, and therefore has unmanaged code, to .NET 4.0 I ran into the following error:

Mixed mode assembly is built against version 'v2.0.50727' of the runtime and cannot be loaded in the 4.0 runtime without additional configuration information.

Googling around gave me the solution, which is to add this to the applications config:

<configuration>
  <startup useLegacyV2RuntimeActivationPolicy="true">
    <supportedRuntime version="v4.0"/>
  </startup>
</configuration>

My question is, what is the useLegacyV2RuntimeActivationPolicy doing? I can't find any documentation about it.

link|improve this question

75% accept rate
1  
See also: stackoverflow.com/questions/2455654/… – Mikhail Oct 13 '10 at 12:11
feedback

5 Answers

up vote 76 down vote accepted

After a bit of time (and more searching), I found this blog entry by Jomo Fisher.

One of the recent problems we’ve seen is that, because of the support for side-by-side runtimes, .NET 4.0 has changed the way that it binds to older mixed-mode assemblies. These assemblies are, for example, those that are compiled from C++\CLI. Currently available DirectX assemblies are mixed mode. If you see a message like this then you know you have run into the issue:

Mixed mode assembly is built against version 'v1.1.4322' of the runtime and cannot be loaded in the 4.0 runtime without additional configuration information.

[Snip]

The good news for applications is that you have the option of falling back to .NET 2.0 era binding for these assemblies by setting an app.config flag like so:

<startup useLegacyV2RuntimeActivationPolicy="true">
  <supportedRuntime version="v4.0"/>
</startup>

So it looks like the way the runtime loads mixed-mode assemblies has changed. I can't find any details about this change, or why it was done. But the useLegacyV2RuntimeActivationPolicy attribute reverts back to CLR 2.0 loading.

link|improve this answer
18  
It's worth noting here that meanwhile marklios answer (stackoverflow.com/questions/1604663/…) provides a link to his thorough explanation regarding this change. – Steffen Opel Jun 1 '10 at 11:49
feedback

Here's an explanation I wrote recently to help with the void of information on this attribute. http://www.marklio.com/marklio/PermaLink,guid,ecc34c3c-be44-4422-86b7-900900e451f9.aspx

At RTM, the MSDN docs on this should be better.

link|improve this answer
4  
+1 for this late follow up, your explanation is most helpful! – Steffen Opel Jun 1 '10 at 11:39
Agreed. Very good explanation, indeed. – Roman Aug 23 '11 at 8:56
feedback

I was searching exactly for the same thing, I found something some "preview" documentation, on the changes that were made to the activation policy. Here's the link: http://msdn.microsoft.com/en-us/library/dd233115%28VS.100%29.aspx

link|improve this answer
feedback

Doc for startup element on MSDN

link|improve this answer
feedback

As other answers suggest, you may try using useLegacyV2RuntimeActivationPolicy. But, first learn about the damages of this flag to your application, from this post and the links from it.

link|improve this answer
Marklio already added that link in his answer. :P – Cameron MacFarland Dec 19 '10 at 22:46
I don't think Pavel deserves downvotes for this. He was trying to be helpful, and his information is accurate. – Charlie Flowers Aug 11 '11 at 1:52
This answer does not answer the author's question. This is at least the reason I decided to downvote the answer. – Ramhound Feb 16 at 16:03
feedback

Your Answer

 
or
required, but never shown

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