Provides some nuget cli functionality for chef. I initially wrote this so chef could serve as a drop in replacement for octopus deploy without having to implement a different packaging workflow.
Supported on windows 2008 and later.
Chef 12.0 or later
chocolatey
- nugetclient utilizes the chocolatey cookbook to install the nuget cli tool on the node.
include_recipe 'nugetclient'
# Nunit is the package name
nugetclient_install 'Nunit' do
# escape backslashes in paths
install_path 'c:\\Nunit'
package_version '2.6.4'
feed_uri 'https://www.nuget.org/api/v2/'
end
Pull requests welcome.
MIT