Our projects in TFS are organized like this:
$\DefaultCollection\ProjectName\Source <-- source code goes here
$\DefaultCollection\ProjectName\SharedAssemblies <-- 3rd party binaries go here
Now that NuGet is on the scene, is there any reason to change our approach and use NuGet's packages folder for dlls that come from NuGet-aware projects? I'm leaning against this because
1) it creates two places one must look for dependencies 2) it leaves us open to one developer updating a package and breaking some dependency
That said, if anyone can report a good reason to start using NuGet in a TFS environment, I will happily present your ideas to my team as if they were my own (joke).
NuGet.exeto populate a local copy from the projects'packages.configfiles: blog.davidebbo.com/2011/03/… – Richard Jun 14 '11 at 13:23nuget-exefor eachpackages.configwith the same repository folder, only missing packages will be downloaded (this could also be a per-project pre-build step). – Richard Jun 14 '11 at 15:35