#事故现场:

 “Newtonsoft.Json”已拥有为“Microsoft.CSharp”定义的依赖项。

【.net】“Newtonsoft.Json”已拥有为“Microsoft.CSharp”定义的依赖项。

#事故原因:

  安装的Newtonsoft.Json版本为11.0.2,版本过高,与Microsoft.CSharp不兼容;

#事故处理:

  安装较低版本的Newtonsoft.Json;

  Newtonsoft.Json官网:https://www.nuget.org/packages/Newtonsoft.Json/

Install-Package Newtonsoft.Json -Version 8.0.1

【.net】“Newtonsoft.Json”已拥有为“Microsoft.CSharp”定义的依赖项。

  卸载命令:

PM> Uninstall-Package Newtonsoft.Json -Version 8.0.1

 

相关文章:

  • 2022-12-23
  • 2021-07-17
  • 2022-02-16
  • 2021-12-04
  • 2022-12-23
  • 2022-12-23
  • 2021-06-28
猜你喜欢
  • 2021-05-29
  • 2021-12-04
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-10-13
  • 2021-12-24
相关资源
相似解决方案