How to install JSON.NET using NuGet?

You can do this a couple of ways. Via the “Solution Explorer” Simply right-click the “References” folder and select “Manage NuGet Packages…” Once that window comes up click on the option labeled “Online” in the left most part of the dialog. Then in the search bar in the upper right type “json.net” Click “Install” and … Read more

System.MissingMethodException: Method not found?

This is a problem which can occur when there is an old version of a DLL still lingering somewhere around. Make sure that the latest assemblies are deployed and no duplicated older assemblies are hiding in certain folders. Your best bet would be to delete every built item and rebuild/redeploy the entire solution.

Is it possible to change the location of packages for NuGet?

It’s now possible to control which folder the packages are installed into. http://nuget.codeplex.com/workitem/215 Edit: See Phil Haack’s comment on Dec 10 2010 at 11:45 PM (in the work item/the link above). The support is partially implemented in 1.0, but is not documented. According to @dfowler: Add a nuget.config file next to the solution with this: … Read more