码迷,mamicode.com
首页 > Web开发 > 详细

未能加载文件或程序集“Newtonsoft.Json, Version=4.5.0.0[已解决]

时间:2015-03-21 01:05:43      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:

在使用百度UEditor,不小心将Newtonsoft.Json,升级了,然后就报的一个错,说:

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

,后来在网站找到了一个方法 ,说插入以下代码就可以了:

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

试了一下,成功解决问题,估计是重写了默认配置的对Json.net的引用,不太懂,还需要学习:

 

原文地址

 

未能加载文件或程序集“Newtonsoft.Json, Version=4.5.0.0[已解决]

标签:

原文地址:http://www.cnblogs.com/huoqishi/p/4355021.html

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