Go to ext host for system default shell and args for tasks

Fixes https://github.com/microsoft/vscode-remote-release/issues/1203
This commit is contained in:
Alex Ross
2019-09-05 14:59:08 +02:00
parent d0898d57d4
commit ca4c1bf7a0
5 changed files with 11 additions and 2 deletions

View File

@@ -1185,6 +1185,7 @@ export interface ExtHostTaskShape {
$onDidEndTaskProcess(value: tasks.TaskProcessEndedDTO): void;
$OnDidEndTask(execution: tasks.TaskExecutionDTO): void;
$resolveVariables(workspaceFolder: UriComponents, toResolve: { process?: { name: string; cwd?: string }, variables: string[] }): Promise<{ process?: string; variables: { [key: string]: string } }>;
$getDefaultShellAndArgs(): Thenable<{ shell: string, args: string[] | string | undefined }>;
}
export interface IBreakpointDto {