I have the following convention for most of my projects:

/src
    /Solution.sln
    /SolutionFolder
        /Project1
        /Project2
        /etc..
/lib
    /Moq
        moq.dll
        license.txt
    /Yui-Compressor
        yui.compressor.dll
/tools
    /ILMerge
        ilmerge.exe

You'll notice that I do not keep external libraries inside the source folder. I'm also very interested in using NuGet but don't want these external libraries inside the source folder. Does NuGet have a setting to change the directory that all packages are loaded into?

link|improve this question

Yes, yes, yes! This is exactly the project structure I use (or very very nearly), and I've always wondered with NuGet could support it... – Noldorin Feb 28 at 23:29
feedback

1 Answer

up vote 58 down vote accepted

It's now possible to control which folder the packages are installed into.

http://nuget.codeplex.com/workitem/215

Edit: See Phil Haack's comment on Dec 10 2010 at 11:45 PM (in the work item/the link above). The support is partially implemented in 1.0, but is not documented.

According to @dfowler: Add a nuget.config file next to the solution with this:

<settings>
<repositoryPath>{some path here}</repositoryPath>
</settings>
link|improve this answer
@PHeiberg - Awesome thanks! – TheCloudlessSky Nov 16 '10 at 20:53
3  
It actually is possible using the above config file. The reason it was de-emphasized is because we haven't though through the workflow of enabling this through the UI and other means so expect some quirkiness. – dfowler Jan 21 '11 at 3:57
1  
2  
See reviewboard.nupack.com/r/131 for a full description by @dfowler of how nuget.config works. For example, a valid nuget.config would look like this: <settings><repositoryPath>lib</repositoryPath></settings> – Lee Harold Jul 9 '11 at 2:53
3  
@peirix the reviewboard has moved here reviewboard.nuget.org/r/131 – PHeiberg Oct 18 '11 at 20:22
show 8 more comments
feedback

Your Answer

 
or
required, but never shown

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