码迷,mamicode.com
首页 > 其他好文 > 详细

dll版本冲突的解决方法

时间:2016-07-15 19:41:58      阅读:271      评论:0      收藏:0      [点我收藏+]

标签:

问题描述

当运行站点或者控制台等程序时,如果项目引用的dll版本与其它dll所依赖的dll版本不一致,就会报未能加载程序集的错误。错误信息为:

未能加载文件或程序集“Newtonsoft.Json, Version=4.5.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed”或它的某一个依赖项。找到的程序集清单定义与程序集引用不匹配。 (异常来自 HRESULT:0x80131040)

原因分析

分析如下图。

技术分享

解决方案

在web.config或app.config中添加以下节点。

技术分享
  1 <!--dll版本向下兼容-->
  2   <runtime>
  3     <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
  4       <dependentAssembly>
  5         <assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
  6         <bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0" />
  7       </dependentAssembly>
  8     </assemblyBinding>
  9   </runtime>
 10 
View Code

dll版本冲突的解决方法

标签:

原文地址:http://www.cnblogs.com/mcgrady/p/5674428.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!