1

我正在尝试将 SendGrid 集成到我的应用程序中,它依赖于 newtonsoft.json.9.0.1。DNN9 附带 newtonsoft.json.7.0.0。但是,如果我添加绑定重定向 bindingRedirect oldVersion="0.0.0.0-7.0.0.0" newVersion="9.0.1" 站点加载,但角色栏已损坏。

我完全被阻止了。如何升级 newtonsoft?

4

1 回答 1

1

尝试添加到 webconfig 代码:

 <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>
于 2017-08-24T07:29:25.450 回答