mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-05 01:25:38 -05:00
Merge from master
This commit is contained in:
@@ -3,8 +3,6 @@
|
||||
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
|
||||
'use strict';
|
||||
|
||||
import { IEditorGroupsService, IEditorGroup, GroupsOrder } from 'vs/workbench/services/group/common/editorGroupsService';
|
||||
import { GroupIdentifier } from 'vs/workbench/common/editor';
|
||||
import { ACTIVE_GROUP, SIDE_GROUP } from 'vs/workbench/services/editor/common/editorService';
|
||||
|
||||
@@ -2,7 +2,6 @@
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
'use strict';
|
||||
|
||||
import { UriComponents } from 'vs/base/common/uri';
|
||||
|
||||
@@ -17,6 +16,11 @@ export interface TaskPresentationOptionsDTO {
|
||||
focus?: boolean;
|
||||
panel?: number;
|
||||
showReuseMessage?: boolean;
|
||||
clear?: boolean;
|
||||
}
|
||||
|
||||
export interface RunOptionsDTO {
|
||||
reevaluateOnRerun?: boolean;
|
||||
}
|
||||
|
||||
export interface ExecutionOptionsDTO {
|
||||
@@ -82,6 +86,7 @@ export interface TaskDTO {
|
||||
presentationOptions: TaskPresentationOptionsDTO;
|
||||
problemMatchers: string[];
|
||||
hasDefinedMatchers: boolean;
|
||||
runOptions: RunOptionsDTO;
|
||||
}
|
||||
|
||||
export interface TaskExecutionDTO {
|
||||
@@ -107,7 +112,6 @@ export interface TaskFilterDTO {
|
||||
|
||||
export interface TaskSystemInfoDTO {
|
||||
scheme: string;
|
||||
host: string;
|
||||
port: number;
|
||||
authority: string;
|
||||
platform: string;
|
||||
}
|
||||
Reference in New Issue
Block a user