以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.net/bbs/index.asp)
--  专家坐堂  (http://foxtable.net/bbs/list.asp?boardid=2)
----  [求助]Newtonsoft.Json错误  (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=145945)

--  作者:foxtablefanse
--  发布时间:2020/2/12 15:44:00
--  [求助]Newtonsoft.Json错误
请问出现以下错误如何处理!
未能加载文件或程序集“Newtonsoft.Json, Version=9.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed”或它的某一个依赖项。找到的程序集清单定义与程序集引用不匹配。 (异常来自 HRESULT:0x80131040)
--  作者:有点蓝
--  发布时间:2020/2/12 16:10:00
--  
foxtable安装目录里的Newtonsoft.Json.dll被替换为旧版本的了,重装foxtable即可
--  作者:foxtablefanse
--  发布时间:2020/2/12 16:13:00
--  
在网上找了好久,问题解决了,在Foxtable.exe.config中添加以下内容:
      <dependentAssembly>
        <assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-11.0.0.0" newVersion="12.0.0.0" />
      </dependentAssembly>
[此贴子已经被作者于2020/2/12 16:13:53编辑过]

--  作者:飞飞
--  发布时间:2021/6/21 19:34:00
--  
哥们,你这个方法真不戳
      <dependentAssembly>
        <assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-11.0.0.0" newVersion="12.0.0.0" />
      </dependentAssembly>