This repository has been archived by the owner on Feb 19, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 342
[Enhancement] Restore packages from a 'packages.config' file #31
Labels
Comments
I like it. |
I would totally dig a pull request here ;) |
This has been completed in #43 |
For notes of others, this packages.config differs a little from a vanilla nuget's packages.config in that it adds a source element. For example: <packages>
<package id="somepackage" />
<package id="somepackagewithversion" version="1.0" />
<package id="somepackagewithsource" version="1.0" source="http://myget.org/f/customfeed" />
<package id="IISExpress" source="webpi" />
</packages> |
Can chocolatey generate a package file based on what's currently installed? Or is that still manual? |
That is an interesting idea. You want to log a new issue for it (or would you like me to)? I'm curious in how we could get the items that are from different sources... and also how to account for items that never end up in lib (ruby gems and WebPI items) |
I submitted issue #67 to track the idea. |
Thanks! I love this project btw. |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
The NuGet way,
nuget install packages.config
, only downloads the packages. The idea being, you've already installed the packages into the projects, you're just rebuilding a new machine/workspace. Obviously, chocolatey would have different semantics: rebuild a machine from this "manifest" (reinstall or update packages).or
The text was updated successfully, but these errors were encountered: