bindingRedirect problem

C

coltrane

I am just learning on how to use shared libraries and I am having
trouble getting the client to use a newer version library. I am using
the following config:

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="CarLibrary"
publicKeyToken="B77A5C561934E089"
culture="neutral"/>
<bindingRedirect oldVersion="6.0.0.0"
newVersion="7.0.0.0"/>
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>

if I recompile my client using version 7 the client works.
If the problem isn't the config file where else should I look ( not in
the mirror I hope )

thanks

john
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top