When trying to add SharpSVN to my C# project, compiling with SharpSVN related calls gives me this error:

FileLoadException was Unhandled 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.

What I did was add the References from the downloaded SharpSVN zip file and added the

using SharpSvn;

When I compile that it works fine, but when I add:

string targetPath = "https://bobl/svn/ConsoleApplication1";

SvnTarget target;
SvnTarget.TryParse(targetPath, out target);

It breaks with that error. I've searched this error and have had no luck in finding a solution.

link|improve this question

71% accept rate
feedback

2 Answers

up vote 4 down vote accepted

The SharpSVN assembly is a mixed assembly built against version 2.0 of the CLR.
Therefore, it cannot be loaded in CLR version 4.0.

You need to change your project to target .Net 3.5 (or earlier) in Project Properties.
Since .Net 2.0, .Net 3.0, and .Net 3.5 all use version 2.0 of the CLR, it will work in any of those versions.

link|improve this answer
1  
Or obtain a version of SharpSVN built with .NET 4.0. – David Lively Jun 8 '10 at 17:44
Did the trick, thanks. Is it unsafe to use an old version of .Net? – Sam F Jun 8 '10 at 17:45
@Sam F, No there are CLR changes, that's why! – Srinivas Reddy Thatiparthy Jun 8 '10 at 17:48
1  
There is nothing wrong with targeting .Net 3.5. (Except that you won't be able to use classes that are new to .Net 4.0) – SLaks Jun 8 '10 at 17:52
feedback

Add this to your app.config if you want to keep targeting .NET 4:

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

This will enable the loading support of mixed mode assemblies (mostly C++/CLI assemblies containing both unmanaged and managed code) built for an older version of the framework.

link|improve this answer
AWESOME! This works great! – Brad Bruce May 20 at 21:25
feedback

Your Answer

 
or
required, but never shown

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