Could not load file or assembly 'Newtonsoft.Json, Version=3.5.0.0

后端 未结 7 908
谎友^
谎友^ 2021-01-07 22:15

I am working in c# 4.0 to read a signed request I am using the following code

FacebookApp fap = new FacebookApp();
fap.AppId = \"789485219211963\"; // App ID         


        
7条回答
  •  感情败类
    2021-01-07 22:48

    You can update it with its nuget package 'Newtonsoft.Json' using the package manager.

    PM> update-package newtonsoft.json
    

提交回复
热议问题