grunt-nucheck
Verify that there are no duplicate versions of a nuget packageThis is just a thin grunt task wrapper around the excellent tool nucheck on github.
Getting Started
This plugin requires Grunt~0.4.5
. In other words it should work on 0.4.5 or higher.
If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:
```shell
npm install grunt-nucheck --save-dev
```
Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:
```js
grunt.loadNpmTasks('grunt-nucheck');
```
The "nucheck" task
Overview
In your project's Gruntfile, add a section namednucheck
to the data object passed into grunt.initConfig()
.
```js
grunt.initConfig({
nucheck: {
dev: {
src: "Source/MySolution.sln", // Relative path to solution file
options: {
// Listing all currently supported options
pattern: "ServiceStack*" // Optional pattern to match package name. Support wildcards
}
}
}
});
```