This is simple gulp plugin to restore nuget packages
Install
$ npm install --save-dev gulp-nuget-restore
Usage
var gulp = ;var nugetRestore = ; gulp;
Seems work well well with gulp-msbuild
var gulp = ;var nugetRestore = ;var msbuild = ; gulp;
API
nugetRestore(options)
options
nugetPath
Type: string
Default: __dir + ./nuget.exe
You can provide a custom path to the nuget executable. One is bundled in the module so this is optional if you want a specific version
monoPath
Type: string
Default: null
You can provide a path to mono if you are on ubuntu (currently untested)
additionalArgs
type array
Default: null
You can provide additional arguments such as -PackageDirectory
var gulp = ;var nugetRestore = ; gulp;
License
MIT © Tommy Parnell