VS 引用dll版本冲突问题

Posted zerosymbol

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了VS 引用dll版本冲突问题相关的知识,希望对你有一定的参考价值。

1、删除项目中的对应引用;

技术图片

 

 

2、如果是有用到NetGet引用的删除项目中的packages里面的对应包文件;

技术图片

 

 

3、如果是在NetGet中引用的注释项目中packages.config对应的插件名;

技术图片

 

 

4、在Web.config里面可以控制对应的版本

此处以Newtonsoft.Json为例,

<runtime>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      
      <dependentAssembly>
        <assemblyIdentity name="Newtonsoft.Json" culture="neutral" publicKeyToken="30ad4fe6b2a6aeed" />
        <!--<bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0" />-->
        <!--<bindingRedirect oldVersion="0.0.0.0-7.5.0.0" newVersion="8.0.0.0"/>-->
        <!--<bindingRedirect oldVersion="0.0.0.0-10.0.0.0" newVersion="10.0.0.0" />-->
        <bindingRedirect oldVersion="0.0.0.0-7.5.0.0" newVersion="12.0.0.0"/>
      </dependentAssembly>
      
    </assemblyBinding>
  </runtime>

 

5、引用新版本的dll

技术图片

 

 

* 此问题是在vs2013中的引用中出现,具体问题是每次在项目中引用的dll都会变回在NetGet中导入的dll的最初版本。

以上是关于VS 引用dll版本冲突问题的主要内容,如果未能解决你的问题,请参考以下文章

C#依赖的DLL版本冲突的问题

DLL版本在不同的NuGet包中发生冲突

版本冲突与Project DevExpress相同

使用NPOI时ICSharpCode.SharpZipLib版本冲突问题解决

DLL版本冲突问题

传递依赖导致相同 DLL 的版本冲突