Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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|improve this question

2 Answers

up vote 2 down vote accepted

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

nuget Install SomePackageName

and it will fetch the package and its dependencies to local disk. You'll need to add the project references manually though, AFAIK.

share|improve this answer
Cool will try this! I added reference to the dll from older version. Seems to work, but I will try your suggestion so I can use the newer one. Thanks! – M W May 18 '12 at 2:56

You could get the code from github and compile it

share|improve this answer
The binaries are also on the github download page. – John Sheehan May 20 '12 at 22:08

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.