解决Newtonsoft.Json版本冲突问题
Posted linkingcloud
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了解决Newtonsoft.Json版本冲突问题相关的知识,希望对你有一定的参考价值。
在配置文件中添加以下代码,App.config或Web.config
<runtime> <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> <dependentAssembly> <assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" /> <bindingRedirect oldVersion="0.0.0.0-10.0.0.0" newVersion="10.0.0.0" /> </dependentAssembly> </assemblyBinding> </runtime>
oldVersion从什么版本到什么版本都强制使用newVersion的版本。
本例子说明从0版本到10版本,都强制使用10版本。
放上Newtonsoft.Json的版本下载地址:https://github.com/JamesNK/Newtonsoft.Json/releases
下载之后里面包括了.NET各版本的DLL文件,选择合适你工程的版本就行了。
以上是关于解决Newtonsoft.Json版本冲突问题的主要内容,如果未能解决你的问题,请参考以下文章
解决未能加载文件或程序集“Newtonsoft.Json ...."或它的某一个依赖项。找到的程序集清单定义与程序集引用不匹配。 (异常来自 HRESULT:0x80131040)(代码片段
未能加载文件或程序集“Newtonsoft.Json, Version=4.5.0.0, Culture=neutral,解决
.NET Core 3.0 System.Text.Json 和 Newtonsoft.Json 行为不一致问题及解决办法