gpt4 book ai didi

c# - 如何在应用程序中使用引用同一 dll 的不同版本的两个 dll?

转载 作者:行者123 更新时间:2023-12-02 08:09:18 25 4
gpt4 key购买 nike

我有一个使用“Windows Azure Storage 2.1.0.2”和“WCF Data Services Client5.6.0”的应用程序。第一个库依赖于 Microsoft.Data.OData 5.2.0,第二个库依赖于 Microsoft.Data.OData 5.6。我如何让它工作?

最佳答案

您可以使用 AssemblyBinding 重定向将旧版本重定向到新版本。请参阅Could not load file or assembly Microsoft.Data.OData Version=5.2.0.0 error in Azure Cloud Worker Role using Table Storage对于同样的问题。

这是简短的答案:

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

关于c# - 如何在应用程序中使用引用同一 dll 的不同版本的两个 dll?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19309782/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com