未能加载文件或程序集“Newtonsoft.Json, Version=4.5.0.0, Culture=neutral,解决
Posted 坚持不懈,才能出彩
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了未能加载文件或程序集“Newtonsoft.Json, Version=4.5.0.0, Culture=neutral,解决相关的知识,希望对你有一定的参考价值。
升级json.net版本时候报的错误
只需要解决.net和json版本冲突即可
<runtime> <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> <dependentAssembly> <assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" /> <bindingRedirect oldVersion="0.0.0.0-11.0.0.0" newVersion="11.0.0.0" /> </dependentAssembly> </assemblyBinding> </runtime>
11.0对应的是dll版本号
以上是关于未能加载文件或程序集“Newtonsoft.Json, Version=4.5.0.0, Culture=neutral,解决的主要内容,如果未能解决你的问题,请参考以下文章