提交 5f641c6d 编写于 作者: D Dirk Baeumer

Fixes #35352: Improving sample build task template to "solve" the "No build tasks found" message

上级 ec98cc17
......@@ -1988,7 +1988,7 @@ class TaskService extends EventEmitter implements ITaskService {
this.showQuickPick(tasks,
nls.localize('TaskService.pickBuildTask', 'Select the build task to run'),
{
label: nls.localize('TaskService.noBuildTask', 'No build task to run found. Configure Tasks...'),
label: nls.localize('TaskService.noBuildTask', 'No build task to run found. Configure Build Task...'),
task: null
},
true).then((task) => {
......@@ -1996,7 +1996,7 @@ class TaskService extends EventEmitter implements ITaskService {
return;
}
if (task === null) {
this.runConfigureTasks();
this.runConfigureDefaultBuildTask();
return;
}
this.run(task, { attachProblemMatcher: true });
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册