Bumping SqlToolsService to 4.7.0.17 (#22823)

* Bumping STS

* Whoops

* Upgrading STS to 4.7.0.17
This commit is contained in:
Benjin Dubishar
2023-04-21 16:44:52 -07:00
committed by GitHub
parent db03525b10
commit c581b0285d
5 changed files with 69 additions and 1 deletions

View File

@@ -493,6 +493,21 @@ declare module 'vscode-mssql' {
*/
deleteFolder(projectUri: string, path: string): Promise<ResultStatus>;
/**
* Exclude a folder and its contents from a project
* @param projectUri Absolute path of the project, including .sqlproj
* @param path Path of the folder, typically relative to the .sqlproj file
*/
excludeFolder(projectUri: string, path: string): Promise<ResultStatus>;
/**
* Move a folder and its contents within a project
* @param projectUri Absolute path of the project, including .sqlproj
* @param destinationPath Path of the folder, typically relative to the .sqlproj file
* @param path Path of the folder, typically relative to the .sqlproj file
*/
moveFolder(projectUri: string, destinationPath: string, path: string): Promise<ResultStatus>;
/**
* Add a post-deployment script to a project
* @param projectUri Absolute path of the project, including .sqlproj