I am using Visual Studio C# 2010 Express and is learning. RESTSharp is supposed to be installed by NuGet but NuGet cannot be used with Express version. Can I still install and configure RESTSharp manually, and how?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The NuGet Visual Studio plugin can’t be used with Express, but you can install NuGet packages from the command line. You’ll need to download the command line bootstrapper from the NuGet CodePlex site.
After installing it, you can just use
and it will fetch the package and its dependencies to local disk. You’ll need to add the project references manually though, AFAIK.