如何在使用Visual Studio发布应用时自动执行gulp任务?
How can I automatically execute gulp task when I publish an application using Visual Studio?
我正在使用 gulp with an ASP.NET MVC project. I have Task Runner Extension 安装在我的 Visual Studio 2013 Pro 中。
每次我向服务器发布新版本时,我必须始终记住首先 运行 一个生成我的发布资源的任务 "production ready"。
有没有办法设置项目,使其在发布之前始终执行 gulp
命令行?
这是我要执行的命令
cmd.exe /c gulp -b --gulpfile "gulpfile.js" production
您可以在 post-构建阶段
我正在使用 gulp with an ASP.NET MVC project. I have Task Runner Extension 安装在我的 Visual Studio 2013 Pro 中。
每次我向服务器发布新版本时,我必须始终记住首先 运行 一个生成我的发布资源的任务 "production ready"。
有没有办法设置项目,使其在发布之前始终执行 gulp
命令行?
这是我要执行的命令
cmd.exe /c gulp -b --gulpfile "gulpfile.js" production
您可以在 post-构建阶段