Read publish profile using DacFX (#16110)

* Read publish profile using DacFX in VS Code

* Fixes

* complete promise on hide

* comment
This commit is contained in:
Charles Gagnon
2021-07-15 08:53:43 -07:00
committed by GitHub
parent 06da33bb3b
commit d03fbbc066
9 changed files with 126 additions and 82 deletions

View File

@@ -13,7 +13,7 @@ declare module 'vscode-mssql' {
export const enum extension {
name = 'Microsoft.mssql'
name = 'ms-mssql.mssql'
}
/**
@@ -45,7 +45,7 @@ declare module 'vscode-mssql' {
validateStreamingJob(packageFilePath: string, createStreamingJobTsql: string): Thenable<ValidateStreamingJobResult>;
}
export enum TaskExecutionMode {
export const enum TaskExecutionMode {
execute = 0,
script = 1,
executeAndScript = 2