Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

gulp-dotnet-stream

jeffreyabecker29MIT0.0.14

dotnet plugin for gulp. Inspired by gulp-msdeploy and gulp-dotnet.

gulpplugin, dotnet

readme

gulp-dotnet-stream

A module to use the dotnet command in a gulp file with streams.

var gulp = require('gulp');
var dotnet = require('gulp-dotnet-stream');
gulp.task('build',function(){
    gulp.src('path\to\my\project.json')
    .pipe(dotnet.build({'-f':'net461'}));
});

Supported Commands

  • dotnet build
  • dotnet restore
  • dotnet run
  • dotnet test
  • dotnet pack
  • dotnet publish
  • dotnet clean