mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-23 01:25:38 -05:00
Merge VS Code 1.31.1 (#4283)
This commit is contained in:
@@ -4,6 +4,7 @@
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
|
||||
import { UriComponents } from 'vs/base/common/uri';
|
||||
import { IExtensionDescription } from 'vs/workbench/services/extensions/common/extensions';
|
||||
|
||||
export interface TaskDefinitionDTO {
|
||||
type: string;
|
||||
@@ -17,6 +18,7 @@ export interface TaskPresentationOptionsDTO {
|
||||
panel?: number;
|
||||
showReuseMessage?: boolean;
|
||||
clear?: boolean;
|
||||
group?: string;
|
||||
}
|
||||
|
||||
export interface RunOptionsDTO {
|
||||
@@ -60,7 +62,7 @@ export interface ShellQuotedStringDTO {
|
||||
export interface ShellExecutionDTO {
|
||||
commandLine?: string;
|
||||
command?: string | ShellQuotedStringDTO;
|
||||
args?: (string | ShellQuotedStringDTO)[];
|
||||
args?: Array<string | ShellQuotedStringDTO>;
|
||||
options?: ShellExecutionOptionsDTO;
|
||||
}
|
||||
|
||||
@@ -89,6 +91,11 @@ export interface TaskDTO {
|
||||
runOptions: RunOptionsDTO;
|
||||
}
|
||||
|
||||
export interface TaskSetDTO {
|
||||
tasks: TaskDTO[];
|
||||
extension: IExtensionDescription;
|
||||
}
|
||||
|
||||
export interface TaskExecutionDTO {
|
||||
id: string;
|
||||
task: TaskDTO;
|
||||
|
||||
Reference in New Issue
Block a user