解决方案是使用6.0并在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-8.0.0.0" newVersion="6.0.0.0" />
- </dependentAssembly>
- </assemblyBinding>
- </runtime>
复制代码
昨天我是用nuget加的Newtonsoft.Json 所以自动添加了config,没有发现问题。今天手动添加才发现了问题 |