所使用的“Newtonsoft.Json, Version=7.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed”版本高于所引用的程序集“
所使用的“Newtonsoft.Json, Version=7.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed”版本高于所引用的程序集“Newtonsoft.Json, Version=4.5.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed”的版本
解决办法:
1、移除Newtonsoft.Json.dll(4.5.0.0),添加Newtonsoft.Json.dll(7.0.0.0)引用;
2、在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-7.0.0.0" newVersion="7.0.0.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>;
3、packages.config中去掉节点:
<package id="Newtonsoft.Json" version="4.5.0.0" targetFramework="net40" />
更多推荐
所有评论(0)