STS version bump (#19953)

* STS version bump

* fix for vbump check pass
This commit is contained in:
Sai Avishkar Sreerama
2022-07-08 09:19:59 -05:00
committed by GitHub
parent f8e92e11f1
commit 84a15ea91d
2 changed files with 2 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
{
"downloadUrl": "https://github.com/Microsoft/sqltoolsservice/releases/download/{#version#}/microsoft.sqltools.servicelayer-{#fileName#}",
"version": "4.1.0.11",
"version": "4.1.0.13",
"downloadFileNames": {
"Windows_86": "win-x86-net6.0.zip",
"Windows_64": "win-x64-net6.0.zip",

View File

@@ -334,7 +334,7 @@ export async function getDefaultPublishDeploymentOptions(project: ISqlProject):
}
// this option needs to be true for same database references validation to work
if (project.databaseReferences.length > 0) {
if (project.databaseReferences.length > 0 && deploymentOptions.includeCompositeObjects !== undefined) {
deploymentOptions.includeCompositeObjects.value = true;
}
return result.defaultDeploymentOptions;