2016-02-08 17:33:17 -05:00
2016-02-04 20:02:24 -05:00
2016-02-04 20:02:24 -05:00
2016-02-05 18:47:08 -05:00
2016-02-04 20:02:24 -05:00
2016-02-04 20:02:24 -05:00
2016-02-04 20:02:24 -05:00
2016-02-04 20:02:24 -05:00
2016-02-04 20:02:24 -05:00
2016-02-05 18:47:08 -05:00
2016-02-05 18:25:09 -05:00
2016-02-04 20:02:24 -05:00

gulp-nuget-restore Build Status

This is simple gulp plugin to restore nuget packages

Install

$ npm install --save-dev gulp-nuget-restore

Usage

var gulp = require('gulp');
var nugetRestore = require('gulp-nuget-restore');

gulp.task('default', function () {
	return gulp.src('./path/to/MySlnFile.sln')
		.pipe(nugetRestore());
});

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)

License

MIT © Tommy Parnell

Description
restore nugets with ease through gulp
Readme 8.9 MiB
Languages
JavaScript 100%