We have two solutions: foo.sln and bar.sln

I have a common library that is used by both foo and bar. Common.csproj is used by both.

If I open foo and update nuget references, all references in Common.csproj point to foo/packages/. If I later open bar and update nuget references, all references get set to those in bar/packages/. Naturally, this pisses off the foo team as it can cause incompatibilities between Common.csproj and Foo-specific stuff like Foo.Data.csproj, which still points to foo/packages.

There must be some obvious solution other than: "create a huge solution that contains all your projects, and if you need to touch nuget, only do it from that solution."

There seems to be an issue on codeplex, (the top voted issue, incidentally), but evidently I'm too thick to understand how this issue is resolved. Can someone explain how to fix this?

link|improve this question

77% accept rate
I wonder if this has suddenly become an issue as I've been doing it for months without running into problems, there was an update yesterday-ish and suddenly we both run into it within 24 hours. Or maybe it's a coincidence. – GraemeF Sep 16 '11 at 10:10
Also see stackoverflow.com/questions/6277925/…. It describes how to change the configuration to specify where the solution will store it's files. If you point all solutions at the same dir, the hint-path should be correct no matter what solution you use. – Reed Rector Apr 10 at 0:15
feedback

2 Answers

This problem preceeds NuGet. If you have a project referenced in two solutions, and change assembly references in the project when it is open in one solution, of course it will change the reference path for that project when it is open in the other solution. This has always been the case, regardless of how the reference was changed (with NuGet or otherwise).

But the real problem is that when you do an update, the updated packages do not appear in the foo/packages directory right?

The simple solution is to move Common.csproj into a solution of its own, with its own references, packages folder, build and release process. Then create a NuGet package of your own with any relevant dependencies built into it. Then you can install your Common package into both Foo and Bar and then the Foo team is free to update to the latest version of Common as and when they are ready.

The main argument that I have heard against this is that you might want to step through the Common code while debugging, but this is no longer an issue with Visual Studio 2010.

The fundamental question you need to ask is who owns Common.csproj? Is it the Foo team or the Bar team?

link|improve this answer
This is the best answer I have seen to explain this. If I could vote this up ten times I would – ferventcoder Sep 22 '11 at 20:33
feedback

Why not have common.csproj as a separate assembly that you reference and has its own dependencies rather than those of the solution its in.

By doing that you protect common from either foo or bar updating the referenced package and breaking it.

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.