I started using nuget and installed some packages, most of them have about 200 KB max but NUnit has 3MB.

My solution is open-source and it is downloaded by lots of people, I'm just thinking: should I commit the entire packages folder as is or ignore non dll files

how do you guys do ?

link|improve this question

feedback

4 Answers

up vote 8 down vote accepted

Personally I'd include the entire packages folder. There's nothing worse than getting an open-source project then having to hunt down the dll's needed to run it.

You could just include the .nupkg files and get the user to run update-package but then you are assuming they have nuget install and remember to run it.

I think its much quicker to get going of the open-source project has everything from the get go.

link|improve this answer
feedback

NuGet now has the ability for you to re-download the missing packages as a pre-build step, meaning that you only need to commit your packages.config file (and include nuget.exe in a tools folder).

Read Using NuGet Without Committing Packages to Source Control for more details.

link|improve this answer
feedback

To echo what Simon said -- it is 2010. Bandwidth and storage are cheap on that scale. The convenience of having the packages with the source beats the hell out of the savings.

link|improve this answer
feedback

Where are you commiting too?

I'm guessing back to NuGet. If so, then no. Just set up the dependencies in your own package.

If you're talking about commiting to version control then yes. But, if so, then why even mention NuGet?

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.