-
Notifications
You must be signed in to change notification settings - Fork 64
NuGet Update
Henrik edited this page Aug 21, 2014
·
1 revision
Update one or more NuGet packages.
nugetupdate :update do |cmd|
cmd.input_file = "path/to/solution"
cmd.safe
end
The location of the packages.config
or solution file.
input_file = "path/to/input/file"
Path to the local packages folder.
repository_path = "path/to/packages"
Package sources to search.
source = ["http://mycompany/nuget/feed"]
Package ids to update.
id = ["foo", "bar"]
Look for updates in the same major/minor version.
safe
(none)