Assembly Binding redirect: How and Why?

Assembly Binding redirect: How and Why?

Why are binding redirects needed at all? Suppose you have application A that references library B, and also library C of version 1.1.2.5. Library B in turn also references library C, but of version 1.1.1.0. Now we have a conflict, because you cannot load different versions of the same assembly at runtime. To resolve this conflict you might use binding redirect, usually to the new version (but can be to the old too). You do that by adding the following to app.config file of application A, under configuration > runtime > assemblyBinding section (see here for an example of full config file):

<dependentAssembly>
    <assemblyIdentity name="C"  
                      publicKeyToken="32ab4ba45e0a69a1"  
                      culture="en-us" />  

    <bindingRedirect oldVersion="1.1.1.0" newVersion="1.1.2.5" />  
</dependentAssembly>

You can also specify a range of versions to map:

<bindingRedirect oldVersion="0.0.0.0-1.1.1.0" newVersion="1.1.2.5" />

Now library B, which was compiled with reference to C of version 1.1.1.0 will use C of version 1.1.2.5 at runtime. Of course, you better ensure that library C is backwards compatible or this might lead to unexpected results.

You can redirect any versions of libraries, not just major ones.

 

分析:

比如你使用了Newtonsoft.Json的最新版本11.0,同时你又引用了一个第三方的类库,这个类库引用了一个9.0版本的Newtonsoft.Json 

那么就必须做bindingRedirect了,否则第三方的类库会找不到9.0的版本。通过bindingRedirect,第三方的类库就可以使用11.0版本的Newtonsoft.Json 

 

比如kentico的文件,CMS.DataEngine.dll就依赖于Newtonsoft.Json.dll。

如果你自己的一个类库,也依赖于Newtonsoft.Json.dll,并且版本不一致

 

作者:Chuck Lu    GitHub    
posted @   ChuckLu  阅读(309)  评论(0编辑  收藏  举报
编辑推荐:
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
· 浏览器原生「磁吸」效果!Anchor Positioning 锚点定位神器解析
· 没有源码,如何修改代码逻辑?
阅读排行:
· 全程不用写代码,我用AI程序员写了一个飞机大战
· MongoDB 8.0这个新功能碉堡了,比商业数据库还牛
· 记一次.NET内存居高不下排查解决与启示
· DeepSeek 开源周回顾「GitHub 热点速览」
· 白话解读 Dapr 1.15:你的「微服务管家」又秀新绝活了
历史上的今天:
2018-04-17 The source was not found, but some or all event logs could not be searched. Inaccessible logs: Security.
2018-04-17 How to use shared model by git in sql source control of red gate
2018-04-17 使用powershell来设置时间
点击右上角即可分享
微信分享提示