mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-20 17:22:51 -05:00
add api to open new project dialog with only one project type with filtered target platforms (#16315)
This commit is contained in:
@@ -27,6 +27,13 @@ declare module 'sqldbproj' {
|
||||
* Opens and loads a .sqlproj file
|
||||
*/
|
||||
openProject(projectFilePath: string): Promise<ISqlProject>;
|
||||
|
||||
/**
|
||||
* Opens the data workspace new project dialog with only the sql database template
|
||||
* @param allowedTargetPlatforms specific target platforms to allow. If not specified, all target platforms for sql will be listed
|
||||
* @returns uri of the created the project or undefined if no project was created
|
||||
*/
|
||||
openSqlNewProjectDialog(allowedTargetPlatforms?: SqlTargetPlatform[]): Promise<vscode.Uri | undefined>;
|
||||
}
|
||||
|
||||
export interface ISqlProject {
|
||||
|
||||
Reference in New Issue
Block a user