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:

asp.net wiki: command line

asp.net wiki: dnx utility

you use gulp shell run these commands


Comments

Popular posts from this blog

java - Andrioid studio start fail: Fatal error initializing 'null' -

android - Gradle sync Error:Configuration with name 'default' not found -

StringGrid issue in Delphi XE8 firemonkey mobile app -