mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-24 01:25:37 -05:00
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:
@@ -4,7 +4,7 @@
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
|
||||
import { Uri } from 'vscode';
|
||||
import { SystemDatabase } from '../common/typeHelper';
|
||||
import { SystemDatabase, SystemDbReferenceType } from '../common/typeHelper';
|
||||
|
||||
export interface IDatabaseReferenceSettings {
|
||||
databaseVariableLiteralValue?: string;
|
||||
@@ -13,6 +13,7 @@ export interface IDatabaseReferenceSettings {
|
||||
|
||||
export interface ISystemDatabaseReferenceSettings extends IDatabaseReferenceSettings {
|
||||
systemDb: SystemDatabase;
|
||||
systemDbReferenceType: SystemDbReferenceType;
|
||||
}
|
||||
|
||||
export interface IUserDatabaseReferenceSettings extends IDatabaseReferenceSettings {
|
||||
|
||||
Reference in New Issue
Block a user