How to fix issue with Newtonsoft.JSON dependency?

前端 未结 2 1694
清酒与你
清酒与你 2021-01-24 12:54

We have .NET Framework 4.6.2 on server. Our project uses the latest version of Newtonsoft.Json. When I try to run our project it fails with the following error:

         


        
相关标签:
2条回答
  • 2021-01-24 13:31

    Please verify if the version of System.Runtime.Serialization currently is 4.1.1.

    Or try to install via nuget package console by using this command:

    Install-Package System.Runtime.Serialization.Primitives -Version 4.1.0
    
    0 讨论(0)
  • 2021-01-24 13:44

    You could try this to find what actually causes the issue: https://marketplace.visualstudio.com/items?itemName=MykolaTarasyuk.ReferenceConflictsAnalyser

    0 讨论(0)
提交回复
热议问题