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.