mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-18 17:22:45 -05:00
change sqlprojUri to projectFileUri (#21938)
This commit is contained in:
@@ -13,10 +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 projectFileUri Full URI to the .sqlproj of this project
|
||||
* @param parent parent tree item
|
||||
*/
|
||||
constructor(public relativeProjectUri: vscode.Uri, public sqlprojUri: vscode.Uri, public parent?: BaseProjectTreeItem) { }
|
||||
constructor(public relativeProjectUri: vscode.Uri, public projectFileUri: vscode.Uri, public parent?: BaseProjectTreeItem) { }
|
||||
|
||||
abstract get children(): BaseProjectTreeItem[];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user