Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

We're building a set of several services, each service has it's own solution with associated projects. Many of these services rely on the same NuGet packages.
All the solutions have "Package Restore" enabled.

Some of the solutions refer to assemblies owned by other solutions, this is one obvious reason why we need all the solutions to refer to exactly the same versions of different NuGet Packages.

All of the services need to work together to achieve an end result. They're packaged and installed as part of a single product, which is another reason we'd like everything to be running off the same versions of the NuGet Packages

We're having trouble keeping package versions consistent between Solutions.

Currently we're manually checking and updating package versions, we're also getting occasional compilation errors because projects in one solution end up referring to different versions of the same package.

Is there a recommended way of doing this (hopefully an automatic process)?
Would we be better off without Package Restore?
Any one any general advice on the subject?

Thanks

Update: I created an issue for this on the NugGet project http://nuget.codeplex.com/workitem/2623

share|improve this question

1 Answer

To solve this:

  1. Create your own private NuGet server (see 1 and 2) that hosts the correct versions of the packages you use.
  2. Configure each build system to use that server and auto update to the latest version.

Although this requires a server, it not only ensures everyone has the correct version but speeds up the downloads for build servers as well.

share|improve this answer
Will this work? Will a primary package (e.g. "MassTransit.RabbitMQ") not go to the Online repo to get it's dependant packages (e.g. MassTransit, Magnum etc)? – Binary Worrier Sep 21 '12 at 8:50
@BinaryWorrier You can configure the servers the IDE will contact for the list of packages to remove the global one. See the links in the answer for screen shots and information on doing that. – akton Sep 21 '12 at 9:38
OK, I see how this is supposed to work. You disable the official NuGet repo and only enable your own. I can see it being awkward to go get new packages, you re-enable the official repo, download packages, try them out, copy them to your own server, disable the official repo, undo your changes. And start using the new package properly. I'll check it out, thanks. – Binary Worrier Sep 21 '12 at 10:23
@BinaryWorrier I agree that it is awkward and am interested to know if there is an easier way, too. – akton Sep 21 '12 at 10:30

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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