goul
goul

Reputation: 853

Use a specific version of a dll in C#

I have a project where I would want to use some specific version of a dll.

The GAC contains couple of versions of that dll (new & old), I would want to use the old when running the program.

Issue is that the newest dll is always picked-up from the GAC.

Would you know if there is a way to either:

Thank you!

Upvotes: 4

Views: 12533

Answers (3)

Aage
Aage

Reputation: 6252

You can use a binding redirect in your app.config or web.config in the runtime node:

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
  <appSettings>
  </appSettings>
  <runtime>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral"/>
        <bindingRedirect oldVersion="0.0.0.0-8.0.0.0" newVersion="8.0.0.0"/>
      </dependentAssembly>
    </assemblyBinding>
  </runtime>
</configuration>

Make sure you have the correct publicKeyToken and know which versions you want to redirect to what version.

(You can check a publicKeyToken of a DLL like this with this info.)

MSDN Documentation

You can also generate these for an entire solution using the Package Manager Console

Get-Project -All | Add-BindingRedirect

This will update all app.config files and add the binding redirect.

Upvotes: 1

Jun Guo
Jun Guo

Reputation: 484

Have you try to "Redirecting Assembly Versions" in your app.config? http://msdn.microsoft.com/en-us/library/7wd6ex19(v=vs.110).aspx

Upvotes: 0

Matten
Matten

Reputation: 17603

When you have added the library to your project and you collapse the 'References'-node of the project tree, you'll see the added library. When you select it and click the 'Properties'-node of the context menu, you can specify if a specific version of the library should be used and which version to use. Simply set 'Specific Version' to true and specify the Version number. Then you don't have to cope with the question where the version you want is loaded from.

Upvotes: 0

Related Questions