mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-02 06:21:50 +01:00
@@ -4,6 +4,7 @@
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
|
||||
import { UriComponents } from 'vs/base/common/uri';
|
||||
import { RerunBehavior } from 'vs/workbench/parts/tasks/common/tasks';
|
||||
|
||||
export interface TaskDefinitionDTO {
|
||||
type: string;
|
||||
@@ -19,6 +20,10 @@ export interface TaskPresentationOptionsDTO {
|
||||
clear?: boolean;
|
||||
}
|
||||
|
||||
export interface RunOptionsDTO {
|
||||
rerunBehavior?: RerunBehavior;
|
||||
}
|
||||
|
||||
export interface ExecutionOptionsDTO {
|
||||
cwd?: string;
|
||||
env?: { [key: string]: string };
|
||||
@@ -82,6 +87,7 @@ export interface TaskDTO {
|
||||
presentationOptions: TaskPresentationOptionsDTO;
|
||||
problemMatchers: string[];
|
||||
hasDefinedMatchers: boolean;
|
||||
runOptions: RunOptionsDTO;
|
||||
}
|
||||
|
||||
export interface TaskExecutionDTO {
|
||||
|
||||
Reference in New Issue
Block a user