項目中使用同一dll的不一樣版本

在一個項目中,由於使用了一些插件,這些插件使用了不一樣版本的log4net,有1.2版本,有2.0版本的。當運行的時候發生衝突。插件

解決辦法:在config中加入以下的配置code

<dependentAssembly>
    <assemblyIdentity name="log4net" publicKeyToken="1b44e1d426115821" culture="neutral" />
    <codeBase version="1.2.10.0" href="v1\log4net.dll" />

  </dependentAssembly>
  <dependentAssembly>
    <assemblyIdentity name="log4net" publicKeyToken="669e0ddf0bb1aa2a" culture="neutral" />
  
    <codeBase version="2.0.8.0" href="v2\log4net.dll" />
  </dependentAssembly>
相關文章
相關標籤/搜索