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
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