Add support for System database package references for SDK-style sql projects (#23309)

* add package reference type for system db references

* Add radio buttons

* hookup

* add test

* handle changing reference type radio buttons

* cleanup

* update strings

* change style to type

* change more places with style to type

* blank lines
This commit is contained in:
Kim Santiago
2023-06-13 13:06:12 -10:00
committed by GitHub
parent 398a91456d
commit 1ff0a07217
12 changed files with 136 additions and 24 deletions

View File

@@ -1406,6 +1406,11 @@ declare module 'vscode-mssql' {
MSDB = 1
}
export const enum SystemDbReferenceType {
ArtifactReference = 0,
PackageReference = 1
}
export interface DatabaseReference {
suppressMissingDependencies: boolean;
databaseVariableLiteralName?: string;