nudossi
v0.0.6
Published
Grunt plugin for bumping NuGet references in project files and configs
Downloads
13
Readme
nudossi
This will bump versions for NuGet dependencies in *.csproj and packages.config files.
Getting started
Do this to run it
$ npm install
$ grunt nudossi --packageName="My.Message" --newVersion="2.7.0" --path=test/data/destination/
If you want to use it in your Grunt pipeline:
$ npm install nudossi --save-dev
Next add this line to your project's Gruntfile:
grunt.loadNpmTasks('nudossi');
Configuration
Add this to your Grunt configuration:
nudossi: {
options: {
packageName: 'My.Message',
newVersion: '2.7.0',
path: 'test/data/destination/'
},
do: {}
}