Subject Re: Issue deploying FirebirdSql.Data.Bdp...
Author scottpks
<simon.carter@t...> wrote:

> OOI have you registered the assemblies as global assemblies using
> gacutil.exe?

Cured by correcting a few errors I had in the applications .config file:

<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Borland.Data.Common"
publicKeyToken="91d62ebb5b0d1b1b"
culture="neutral"/>
<bindingRedirect oldVersion="2.0.0.0"
newVersion="2.2.0.0"/>
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Borland.Data.DataSync"
publicKeyToken="91d62ebb5b0d1b1b"
culture="neutral"/>
<bindingRedirect oldVersion="2.0.0.0"
newVersion="2.2.0.0"/>
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Borland.Data.Provider"
publicKeyToken="91d62ebb5b0d1b1b"
culture="neutral"/>
<bindingRedirect oldVersion="2.0.0.0"
newVersion="2.2.0.0"/>
</dependentAssembly>
</assemblyBinding>


I had previously entered newVersion="2.1.0.0" so a manual error on my
part there.

Thanks for the help anyway Si.


Regards,


Scott :)