未能加载文件或程序集Newtonsoft.Json, Version=4.5.0.0...

来源:互联网 发布:网络新词及解释 编辑:程序博客网 时间:2024/06/01 10:41

1.打开 程序管理器控制台  输入 PM> install-package newtonsoft.json 

2.查看bin文件中是否有 newtonsoft.json.dll文件

3.在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-6.0.0.0" newVersion="6.0.0.0" />      </dependentAssembly>    </assemblyBinding>  </runtime>

5.重新编译后运行

1 0
原创粉丝点击