How to fix issue with Newtonsoft.JSON dependency?

前端 未结 2 1695
清酒与你
清酒与你 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
    

提交回复
热议问题