Suppose I have a solution with 3 projects:

  • Core
  • UI
  • Tests

Some of the NuGet packages I use will apply to all 3 projects. Some will just apply to UI and Tests, and some will just apply to Tests (like NUnit).

What is the right way to set this up using NuGet?

  1. Should I use "Add Library Package Reference" on all three projects any time I need a reference?
  2. Should I use "Add Library Package Reference" the first time I need a package, and then use Add Reference->Browse for subsequent usages?

In either case, how many packages.config files should I have?

link|improve this question

feedback

5 Answers

up vote 10 down vote accepted

For anybody stumbling across this, now there is an option for :

Tools > Library Package Manager > Manage NuGet Packages for Solution...

And if you go to the Installed packages area you can 'Manage' a single package across every project in the solution.

link|improve this answer
Updated to mark this at the answer because it's the correct solution now. – Paul Stovell Jan 18 at 13:44
@Paul: Thank you for updating the accepted answer 9 months later. – Eric J. Mar 19 at 17:13
@EricJ. no problem, shame StackOverflow doesn't let other people change the accepted answer of an old question. – Paul Stovell Mar 19 at 18:02
feedback

You should use the "Add Library Package Reference" for all your external library on every project in your solution. You'll end up with a packages.config per project.

However, you'll download the package only one time and reuse them locally for all your other projects.

link|improve this answer
Note: If you don't update all the library packages, you will end up with 3 different versions of the same assembly. .NET can work with 3 different versions if they're in the GAC or with different names. But because they will have the same name. You will end up with nonworking builds because the old version was copied over the newer version. – graffic Dec 29 '11 at 16:52
feedback

If you want to install a package across multiple solutions I wrote a handy Powershell script for doing it, see here.

You can even filter the Get-Project -All command and target a sub-set of the project list.

link|improve this answer
feedback

You can use the console to target multiple projects

Tools > Library Package Manager > Package Manager Console

then use this command

Get-Project PROJECT-NAMES-WITH-COMMAS | Install-Package PACKAGENAME

for example

Get-Project Core,UI | Install-Package NotifyPropertyWeaver
link|improve this answer
feedback

This sweet deal works for me:

PM> Get-Project -all | where {$_.Name -match "Songhay.Silverlight" -and
    $_.Name -notmatch "ApplicationLoader" -and $_.Name -notmatch ".Xml"}
    | ForEach-Object {Install-Package MvvmLight -project $_.Name}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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