我有一个使用“Windows Azure Storage 2.1.0.2”和“WCF Data Services Client5.6.0”的应用程序。第一个库依赖于 Microsoft.Data.OData 5.2.0,第二个库依赖于 Microsoft.Data.OData 5.6。我如何让它工作?
问问题
245 次
1 回答
3
您可以使用 AssemblyBinding 重定向将旧版本重定向到新版本。对于相同的问题,请参阅使用表存储在 Azure Cloud Worker Role 中无法加载文件或程序集 Microsoft.Data.OData 版本 = 5.2.0.0 错误。
这是简短的答案:
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Microsoft.Data.OData" publicKeyToken="31bf3856ad364e35" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-5.6.0.0" newVersion="5.6.0.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="Microsoft.Data.Edm" publicKeyToken="31bf3856ad364e35" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-5.6.0.0" newVersion="5.6.0.0" />
</dependentAssembly>
</assemblyBinding>
于 2013-10-11T03:29:48.950 回答