0.0.6 • Published 10 years ago

nudossi v0.0.6

Weekly downloads
24
License
-
Repository
github
Last release
10 years ago

Build Status Built with Grunt NPM version
Code Climate Test Coverage
Dependency Status devDependency Status
forthebadge

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: {}
}