Archived
Exclude Object Types Coming from DacFx and tests all working as expected (#20015)
* Include Objects Coming from DacFx and tests all working as expected * Exclude Object types functionality is working as expected and Unit tests * more refactor updates * Updated comments and prop name * Addressing the coments and code updates accordingly * Updating according to the comments * STS vbump * These changes should be deleted with SC changes, not here * format fixed
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"downloadUrl": "https://github.com/Microsoft/sqltoolsservice/releases/download/{#version#}/microsoft.sqltools.servicelayer-{#fileName#}",
|
||||
"version": "4.2.0.8",
|
||||
"version": "4.2.0.10",
|
||||
"downloadFileNames": {
|
||||
"Windows_86": "win-x86-net6.0.zip",
|
||||
"Windows_64": "win-x64-net6.0.zip",
|
||||
|
||||
Vendored
+4
-2
@@ -163,10 +163,10 @@ declare module 'mssql' {
|
||||
}
|
||||
|
||||
/**
|
||||
* Interface containing deployment options of integer type, value property holds values from <DacFx>\Product\Source\DeploymentApi\ObjectTypes.cs enum
|
||||
* Interface containing deployment options of string[] type, value property holds enum names (nothing but option name) from <DacFx>\Product\Source\DeploymentApi\ObjectTypes.cs enum
|
||||
*/
|
||||
export interface DacDeployOptionPropertyObject {
|
||||
value: number[];
|
||||
value: string[];
|
||||
description: string;
|
||||
displayName: string;
|
||||
}
|
||||
@@ -179,6 +179,8 @@ declare module 'mssql' {
|
||||
excludeObjectTypes: DacDeployOptionPropertyObject;
|
||||
// key will be the boolean option name
|
||||
booleanOptionsDictionary: { [key: string]: DacDeployOptionPropertyBoolean };
|
||||
// key will be the object type enum name(nothing but option name)
|
||||
objectTypesDictionary: { [key: string]: string };
|
||||
}
|
||||
|
||||
/*
|
||||
|
||||
Reference in New Issue
Block a user