Asp.net core mvc 如何在visualstudio后台使用gulp自动运行多个任务

Asp.net core mvc 如何在visualstudio后台使用gulp自动运行多个任务,asp.net-core-mvc,Asp.net Core Mvc,我很难在VisualStudio后台自动运行多个任务,而不显式地触发每个任务 从task runner explorer中,我只能从Binding>Project Open自动触发一个观察者。您需要使用gulp.parallel将观察者组合成一个命令: export const watch = gulp.parallel(watchCss, watchJs, ...);

我很难在VisualStudio后台自动运行多个任务,而不显式地触发每个任务


从task runner explorer中,我只能从Binding>Project Open自动触发一个观察者。您需要使用
gulp.parallel将观察者组合成一个命令:

export const watch = gulp.parallel(watchCss, watchJs, ...);