Using 2 different versions of the same dll?
You need to use a dependentAssembly with bindingRedirect but also you need put dlls in different folder or save with a different name. With this done, you need to put the following in your app.config: <assemblyBinding xmlns=”urn:schemas-microsoft-com:asm.v1″> <dependentAssembly> <assemblyIdentity name=”myAssembly” publicKeyToken=”here token dll” culture=”neutral” /> <bindingRedirect oldVersion=”0.0.0.0-1.0.0.0″ newVersion=”1.0.0.0″ /> <bindingRedirect oldVersion=”1.0.0.1-2.0.0.0″ newVersion=”2.0.0.0″ /> <codeBase version=”1.0.0.0″ … Read more