visual studio (2015) Task Runner "Project Open" 打开解决方案时绑定任务启动两次
visual studio (2015) Task Runner "Project Open" bound task is launched twice when open solution
我有一个 "watch" 任务将其绑定到 "project open" 绑定。但是当打开解决方案时,它是 运行 两次......我的解决方案包括这些项目:
- 控制器
- EFRepository
- 基础设施
- 型号
- 报表库
- 网页界面
- 设计
我的观看任务是:
gulp.task("watch-templates", [], function () {
var config = {
baseDir: "WebUI/Templates",
files: [
// includes:
"WebUI/Templates/**/*.html",
// excludes:
"!WebUI/Templates/**/*.min.html"
]
};
return gulp.watch(config.files, ["Build-templates"]);
});
感谢抽出时间。
我也遇到了同样的问题。
我发现 MS 提出了这两个问题,但它们似乎将问题的范围限制在 Task Runner Explorer 设置为 auto-hide 时。
无论我的 Task Runner 资源管理器面板如何定位,我都遇到了这个问题。
MS 表示 Visual Studio 2015 Update 1 RTM 解决了这些票证中提到的问题,但我还没有尝试更新自己。希望它也能解决我们都遇到的问题。
刚在 vs 2019 中得到它...但看起来版本 16.2 会修复它。
https://developercommunity.visualstudio.com/content/problem/526923/task-runner-explorer-calls-task-two-times-on-proje.html
我有一个 "watch" 任务将其绑定到 "project open" 绑定。但是当打开解决方案时,它是 运行 两次......我的解决方案包括这些项目:
- 控制器
- EFRepository
- 基础设施
- 型号
- 报表库
- 网页界面
- 设计
我的观看任务是:
gulp.task("watch-templates", [], function () {
var config = {
baseDir: "WebUI/Templates",
files: [
// includes:
"WebUI/Templates/**/*.html",
// excludes:
"!WebUI/Templates/**/*.min.html"
]
};
return gulp.watch(config.files, ["Build-templates"]);
});
感谢抽出时间。
我也遇到了同样的问题。
我发现 MS 提出了这两个问题,但它们似乎将问题的范围限制在 Task Runner Explorer 设置为 auto-hide 时。
无论我的 Task Runner 资源管理器面板如何定位,我都遇到了这个问题。
MS 表示 Visual Studio 2015 Update 1 RTM 解决了这些票证中提到的问题,但我还没有尝试更新自己。希望它也能解决我们都遇到的问题。
刚在 vs 2019 中得到它...但看起来版本 16.2 会修复它。 https://developercommunity.visualstudio.com/content/problem/526923/task-runner-explorer-calls-task-two-times-on-proje.html