C# --- .Net Framework中的Binding Redirect

C# --- .Net Framework中的Binding Redirect

什么是Binding Redirect

  • 为什么需要绑定重定向?
  • 在.Net Framework 中, 假设你有一个应用程序 A,它引用了libray B 和 library C, 同时B又引用了D的1.1.1.0版本,而C引用了D的1.1.1.1版本. 现在我们面临一个冲突,因为在运行时无法加载不同版本的同一个程序集
  • 一般会报出以下Error Message
System.IO.FileLoadException: Could not load file or assembly 'System.Net.Http.Formatting, Version=5.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference.
  • 为了解决这个冲突,你可以使用绑定重定向,通常是指向新版本(但也可以指向旧版本)。你可以通过将以下内容添加到应用程序 A 的 app.config 文件的 configuration > runtime > assemblyBinding 部分来进行绑定重定向
//所有对D的 0.0.0.0-1.1.1.0 之间版本的引用都会重新定向到版本1.1.1.1
<dependentAssembly>
    <assemblyIdentity name="D" publicKeyToken="32ab4ba45e0a69a1"  culture="en-us" />  
    <bindingRedirect  oldVersion="0.0.0.0-1.1.1.0"  newVersion="1.1.1.1" />  
</dependentAssembly>

在.Net Core中可以使用如下方法

//You can add the following settings to your .csproj file:
<PropertyGroup>
  <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
  <GenerateBindingRedirectsOutputType>true</GenerateBindingRedirectsOutputType>
</PropertyGroup>
  • Otherwise adding them to an app.config in the root of the solution, as Joao says, works too. Make sure you set its Copy to Output Directory setting to Copy always or Copy if Newer.
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值