How can I use NuGet to add a library package reference, when I have Visual C# 2010 Express?

NuGet doesn't come up when I search for it in Tools > Extension Manager.

I downloaded "NuGet Package Manager" (the .vsix) from the downloads page, but when it prompts me for which versions of Visual studio to integrate into, it only lists Visual Web Developer Express 2010. Visual C# Express isn't shown. So I guess it would work with Silverlight in VWD, but I want to use it with WPF.

One of the documentation pages linked me to the 1.0 CTP download page, which included a command-line version of NuGet (no longer present in the latest version). But the command-line version seems to be crippled -- the only operation it seems to support is building a package for distribution; it doesn't seem to support the commands for adding a reference to a library package.

Is there any way at all to use NuGet with Visual C# Express?

link|improve this question

72% accept rate
feedback

2 Answers

up vote 27 down vote accepted

Microsoft signs NuGet in a way that allows it to work with VWD Express. Ideally, it would also be signed in a way that it works with C# Express (it may have to be a separate build). Unfortunately, we were not able to do this for the initial release (it's more of a challenge than you might think).

Going forward, we will try to enable this scenario. Feel free to file a bug on the NuGet site just to let others who are affected a chance to vote it up!

link|improve this answer
1  
Would you consider nuget.codeplex.com/workitem/184 to cover this? (Of course, it says they're looking at supporting other SKUs for v1 -- apparently that didn't end up making it in.) – Joe White Jan 3 '11 at 1:42
Yes, it certainly does, I didn't realize we had a bug. Indeed this did not make v1. Feel free to add you input to that bug, and vote it up if you haven't already. – David Ebbo Jan 4 '11 at 3:23
Is this only an issue with C# express? Meaning does it work with C# professional? – mibollma Apr 2 at 7:55
It's only an issue for Express, not Professional. – David Ebbo Apr 2 at 16:40
To summarise: no you can't use NuGet with Visual Studio Express. Shame. – Matt Hickford May 14 at 20:51
feedback

If you have VWD Express installed you can work around this as follows:

  1. Save and close your project in c# Express

  2. Open the project in VWD Express and use Nuget from there to add your packages

  3. Save your project and go back to c# Express

link|improve this answer
This is a really quick solution. Thanks David. – Kevin Rood Nov 29 '11 at 4:49
feedback

Your Answer

 
or
required, but never shown

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