You need to add assemblyBinding information to your configuration in order to force it to bind. Something like that:
<runtime> <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> <probing privatePath="" /> <dependentAssembly> <assemblyIdentity name="iAnywhere.Data.AsaClient" publicKeyToken="f222fc4333e0d400" culture="neutral" /> <bindingRedirect oldVersion="9.0.2.3951-9.0.2.3951" newVersion="9.0.2.3924" /> </dependentAssembly> </assemblyBinding> </runtime>
The second option: unload the corresponding project, and then select change it (via the context menu). Find the link to the project, which should look like this:
<Reference Include="iAnywhere.Data.AsaClient, Version=9.0.2.3951, Culture=neutral, PublicKeyToken=f222fc4333e0d400">
You can either delete it, or restore it manually, or simply change the XML entry:
<Reference Include="iAnywhere.Data.AsaClient, Version=9.0.2.3924, Culture=neutral, PublicKeyToken=f222fc4333e0d400">
Hurrah!
source share