Reputation: 19181
I am trying to download JSON.NET from NuGet.
Is it available? What's the correct command?
Upvotes: 49
Views: 108991
Reputation: 54
I have Had the same issue and the only Solution i found was open Package manager> Select Microsoft and .Net as Package Source and You will install it..
Upvotes: 2
Reputation: 1960
You can do this a couple of ways.
Via the "Solution Explorer"
Via the "Package Manager Console"
Install-Package Newtonsoft.Json
For more info on how to use the "Package Manager Console" check out the nuget docs.
Upvotes: 102