未能加载文件或程序集“Newtonsoft.Json, Version=4.5.0.0, xxx”或它的某一个依赖项

前端之家收集整理的这篇文章主要介绍了未能加载文件或程序集“Newtonsoft.Json, Version=4.5.0.0, xxx”或它的某一个依赖项前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

错误如下:


如果发现程序集中没有引用该dll,可以尝试以下解决办法:在配置中加入程序集配置

  <runtime>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-7.0.0.0" newVersion="7.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
  </runtime>
原文链接:/json/289404.html

猜你在找的Json相关文章