Move TaskGroup isDefault api out of proposed

Part of #79188
This commit is contained in:
Alex Ross
2021-08-16 15:06:34 +02:00
parent 59eac5771b
commit 84a8a567e8
6 changed files with 16 additions and 21 deletions

View File

@@ -4,7 +4,7 @@
*--------------------------------------------------------------------------------------------*/
import * as assert from 'assert';
import { commands, ConfigurationTarget, CustomExecution, Disposable, env, Event, EventEmitter, Pseudoterminal, ShellExecution, Task, Task2, TaskDefinition, TaskExecution, TaskProcessStartEvent, tasks, TaskScope, Terminal, UIKind, window, workspace } from 'vscode';
import { commands, ConfigurationTarget, CustomExecution, Disposable, env, Event, EventEmitter, Pseudoterminal, ShellExecution, Task, TaskDefinition, TaskExecution, TaskProcessStartEvent, tasks, TaskScope, Terminal, UIKind, window, workspace } from 'vscode';
import { assertNoRpc } from '../utils';
// Disable tasks tests:
@@ -350,7 +350,7 @@ import { assertNoRpc } from '../utils';
}
], ConfigurationTarget.Workspace);
const task = <Task2[]>(await tasks.fetchTasks());
const task = <Task[]>(await tasks.fetchTasks());
if (task && task.length > 0) {
const grp = task[0].group;