gpt4 book ai didi

c# - 我应该使用什么 gulp 插件在 Mac 上构建 ASP.NET 5?

转载 作者:行者123 更新时间:2023-11-30 17:43:20 24 4
gpt4 key购买 nike

Visual Studio 代码文档 https://code.visualstudio.com/Docs/tasks提供用于构建 C# 代码的 gulp 任务示例。

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);
});

但是没有关于gulp插件的信息。我可以使用 gulp 构建我的 aspVnext 应用程序吗?

最佳答案

ASP.NET 5 (vNext) 应用程序本身并不是“构建”的。阅读 wiki 以了解有关如何使用 dnxdnu 命令的更多信息:

ASP.NET Wiki: Command line

ASP.NET Wiki: DNX Utility

你可以使用 gulp shell运行这些命令

关于c# - 我应该使用什么 gulp 插件在 Mac 上构建 ASP.NET 5?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31120473/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com