我尝试将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?
答案 0 :(得分: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>