欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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

程序员文章站 2022-05-03 15:02:52
在web.config 的configuration节点下添加

在web.config 的configuration节点下添加

<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>

可以解决