How to automatically update NuGet packages to latest available version

22,996

You could probably leverage the NuGet Package Restore feature (a bit of info here : http://docs.nuget.org/docs/workflows/using-nuget-without-committing-packages)

At project build, it calls "nuget.exe -install" to reinstall the packages from packages.config. I haven't tried it but you could add a Update command to the nuget.targets file in the same way. (You'd have to call both nuget.exe update and the existing nuget.exe install).

Share:
22,996
themilkyninja
Author by

themilkyninja

Updated on July 09, 2022

Comments

  • themilkyninja
    themilkyninja almost 2 years

    I have two repositories, and I need compiled libraries from one repository in the other. I don't want to manually check repo1 for updated libraries, and copy/commit to repo2, because that is stupid. I've got repo1 building NuGet packages on each build of the necessary libraries, and publishing them to an internal NuGet server. Projects in repo2 can then reference these NuGet packages, and everything is (almost) working.

    The one last hurdle to this is automatically updating the NuGet packages in repo2's projects. Since I don't know when the libraries in repo1 will get updated (and I shouldn't have to), I would like some sort of build event on the projects in repo2 that will automatically update the NuGet packages. I currently just have a pre-build event doing it, but since packages.config files contain the version number of the installed package, I keep getting modified files in repo2 (the packages.config files get updated).

    So my question is: what's a good way to automatically upgrade NuGet packages without mucking up my repo2 VCS? ScottGu says Here (in comments) that it's possible to hook package upgrades up to CI builds, but he doesn't specify how and my current solution is messy. Is there a built in way that I'm missing? Or any better work-arounds?

  • themilkyninja
    themilkyninja about 12 years
    I looked into that and that only restored packages to the solution level package folder (not to the actual project). I want to not check files into the project either, and neither nuget.exe update nor nuget.ext install get all files back into the project. Basically what I am looking for is this feature
  • David Leitner
    David Leitner over 6 years
    It’s not as simple as putting it in the pre-build steps. In fact that’s actually too late: stackoverflow.com/questions/15027256/…