Prior to NuGet, it was common accepted 'best practice' to check-in all external DLLs used on a project. Typically in a Libs or 3rdParty directory.

When working with NuGet, am I supposed to check-in the packages directory, or is there a way for MSBuild to auto download the needed packages from the nuget feed?

link|improve this question

69% accept rate
Currently it's not possible to have NuGet handle the download of dependencies at build time. See this stackoverflow.com/questions/4460838/… – PHeiberg Feb 12 '11 at 15:07
It is now possible, see my answer below – Edward Wilde Nov 4 '11 at 9:59
feedback

4 Answers

No

Since this question was asked there is now an easy workflow to use NuGet without commiting packages to source control

From your package manager console you need to install the 'NuGetPowerTools':

Install-Package NuGetPowerTools

Then to enable your projects to support pack restore you need to run another command:

Enable-PackageRestore

Now you are ready to commit your code base without the packages folder. The previous command changed your project files so that if packages are missing they get automatically downloaded and added.

Source

Using NuGet without committing packages to source control

link|improve this answer
2  
As of NuGet-1.6, you no longer need NuGetPowerTools to do this. Simply right click on the Solution in Solution Explorer and choose, Enable NuGet Package Restore. See the docs. – Kaleb Pederson Feb 16 at 16:48
feedback

Yes. Consider the "packages" directory to be equivalent to your "libs" directory that you mentioned in your question. This is the approach I personally take with my OSS projects.

We are investigating features that would allow MSBuild to auto download the needed packages, but that hasn't been implemented (as of NuGet 1.1).

I think some people may have already implemented such features on their own, but our plan is to look at having that feature built in to NuGet 1.2 or 1.3 hopefully.

link|improve this answer
9  
I'd definitely like to see that feature added. It would be nice to be able to have packages pulled down as necessary to a CI server or dev PC, so that you can avoid bloating the source control repository with third party DLLs. – GiddyUpHorsey Feb 13 '11 at 3:05
Should I check in all files? Or is it sufficient to only check in the dlls and the NuGet config (whatever it's called). – Rene Schulte Mar 20 '11 at 20:47
2  
If package manager in visual studio and the command-line tool both could "repair Packages" that would be awesome. – Shaun Wilson Apr 30 '11 at 3:33
1  
Is this answer still current? – Tim Post Nov 22 '11 at 8:46
2  
@Tim answer is not current imho – Edward Wilde Nov 23 '11 at 11:15
show 4 more comments
feedback

I realize the reality was different when this question has been originally posted and answered, but fortunately the answer changed a bit. It is now possible to use NuGet to download dependencies via MSBuild using a Pre-Build event. You don't need to put the packages folder in your code repository, all dependencies will be downloaded and/or updated on build. It may a workaround, but it looks decent enough. See the following blog post for details: http://blog.davidebbo.com/2011/03/using-nuget-without-committing-packages.html

link|improve this answer
1  
I was excited till I remembered that this requires the build server to access the NuGet repository, and this is not the only place I've worked at where the build servers can't see the internet. I'll just go back to checking the packages tree in... – piers7 Jul 27 '11 at 2:40
feedback
up vote 3 down vote accepted

Since asking the question, I've put in the following approach so that I do not have to check in the toplovel Packages directory.

In a toplevel build.msbuild file:

<Target Name="NuGet">
    <ItemGroup>
       <NuGetPackage Include="*\packages.config" />
    </ItemGroup>
    <Exec Command='libs\NuGet.exe install "%(NuGetPackage.FullPath)" -o Packages'  />

    <!-- optional for project that has JavaScript content -->
    <CreateItem Include="Packages\*\Content\Scripts\*">
       <Output TaskParameter="Include" ItemName="NuGetJSFiles"/>
    </CreateItem>
    <Copy SourceFiles="@(NuGetJSFiles)" DestinationFolder="MainProj\Scripts\" OverwriteReadOnlyFiles="true" SkipUnchngedFiles="true" />
    <Delete Files="MainProj\Scripts\.gitignore" />
    <WriteLinesToFile File="MainProj\Scripts\.gitignore" Lines="%(NuGetJSFiles.Filename)%(NuGetJSFiles.Extension)" /
    <Delete Files="@(PostNuGetFiles)" />
</Target>

In each project.csproj file

<Target Name="BeforeBuild">
    <Error Condition="!Exists('..\Packages\')" Text="You must run &gt; msbuild build.msbuild to download required NuGet
Packages" />

    <!-- optional for project that has JavaScript content -->
   <ReadLinesFromFile File="Scripts\.gitignore">
     <Output TaskParameter="Lines" ItemName="ReqJSFiles" />
   </ReadLinesFromFile>
   <Message Text="@(ReqJSFiles)" />
   <Error Condition="!Exists('Scripts\%(ReqJSFiles.Identity)')" Text="You must run &gt; msbuild build.msbuild to download required NuGet JS Package - Scripts\%(ReqJSFiles.Identity)" />
 </Target>
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.