c# - What gulp plugin should I use to build ASP.NET 5 on Mac? -
visual studio code docs https://code.visualstudio.com/docs/tasks provides example of gulp task building c# code.
var program = "myapp"; var port = 55555; gulp.task('default', ['debug']); gulp.task('build', function() { return gulp .src('./**/*.cs') .pipe(msc(['-fullpaths', '-debug', '-target:exe', '-out:' + program])); }); gulp.task('debug', ['build'], function(done) { return mono.debug({ port: port, program: program}, done); });
but there no info gulp plugin. can build aspvnext app gulp?
asp.net 5 (vnext) apps not "built" per se. read wiki learn more how use dnx
, dnu
commands:
you use gulp shell run these commands
Comments
Post a Comment