.net – 与Newtonsoft.Json的汇编冲突

前端之家收集整理的这篇文章主要介绍了.net – 与Newtonsoft.Json的汇编冲突前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我需要加载两个版本的汇编Newtonsoft.Json vesion 4.0.8.0和4.5.0.0
现在在我的配置文件中:
<dependentAssembly>
        <assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.0.8.0" newVersion="4.0.8.0" />
</dependentAssembly>

但是我需要老4.0.8.0和4.5.0.0

<dependentAssembly>
        <assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.0.8.0" newVersion="4.5.0.0" />
      </dependentAssembly>

我从Package Console安装最后一个版本,但它给我错误

错误80无法加载文件或程序集“Newtonsoft.Json,Version = 4.5.0.0,Culture = neutral,PublicKeyToken = 30ad4fe6b2a6aeed”或其一个依赖项.找到的程序集的清单定义与程序集引用不匹配. (HRESULT的异常:0x80131040)

我今天遇到了这个问题,我在这个 link中找到了解决方案.

基本上更新了Newtonsoft.Json包.并在web.config中注册此程序集

<dependentAssembly>
    <assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" />
    <bindingRedirect oldVersion="0.0.0.0-4.5.0.0" newVersion="5.0.8"/>
</dependentAssembly>
原文链接:https://www.f2er.com/json/288512.html

猜你在找的Json相关文章