Fixes #62594: Resolving process task doesn't take task system into account

This commit is contained in:
Dirk Baeumer
2018-11-05 15:07:55 +01:00
parent fb9e1da186
commit 41c02aa888
6 changed files with 162 additions and 84 deletions

View File

@@ -914,7 +914,7 @@ export interface ExtHostTaskShape {
$onDidStartTaskProcess(value: TaskProcessStartedDTO): void;
$onDidEndTaskProcess(value: TaskProcessEndedDTO): void;
$OnDidEndTask(execution: TaskExecutionDTO): void;
$resolveVariables(workspaceFolder: UriComponents, variables: string[]): Thenable<any>;
$resolveVariables(workspaceFolder: UriComponents, toResolve: { process?: { name: string; cwd?: string }, variables: string[] }): Thenable<{ process?: string; variables: { [key: string]: string } }>;
}
export interface IBreakpointDto {