mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-24 17:23:05 -05:00
Update sql projects tree to use sqlproj uri instead of parent nodes (#21901)
* update sql projects tree to use sqlproj uri instead of parent nodes * remove todo * undo other change * update a couple more
This commit is contained in:
@@ -13,9 +13,10 @@ export abstract class BaseProjectTreeItem {
|
||||
/**
|
||||
* Constructor
|
||||
* @param relativeProjectUri Project-relative URI that's compatible with the project tree
|
||||
* @param sqlprojUri Full URI to the .sqlproj of this project
|
||||
* @param parent parent tree item
|
||||
*/
|
||||
constructor(public relativeProjectUri: vscode.Uri, public parent?: BaseProjectTreeItem) { }
|
||||
constructor(public relativeProjectUri: vscode.Uri, public sqlprojUri: vscode.Uri, public parent?: BaseProjectTreeItem) { }
|
||||
|
||||
abstract get children(): BaseProjectTreeItem[];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user