From 3b18f9f8ec1a90acafcbd16d03d755fae39ef3d1 Mon Sep 17 00:00:00 2001 From: BranislavGrbicMDCS <55592643+BranislavGrbicMDCS@users.noreply.github.com> Date: Fri, 30 Oct 2020 22:05:19 +0100 Subject: [PATCH] Hiding dacpac from search for SQLOD (#13142) * Hiding dacpac from search for SQLOD * Removing Schema compare from search bar for SQL OD * Updating STS version for removing ServerRoles folder change for SQL OD --- extensions/dacpac/package.json | 6 ++++++ extensions/mssql/config.json | 2 +- extensions/schema-compare/package.json | 6 ++++++ 3 files changed, 13 insertions(+), 1 deletion(-) diff --git a/extensions/dacpac/package.json b/extensions/dacpac/package.json index bea4a78a8a..13f388a52d 100644 --- a/extensions/dacpac/package.json +++ b/extensions/dacpac/package.json @@ -65,6 +65,12 @@ "when": "connectionProvider == MSSQL && nodeType && nodeType == Folder && nodeLabel == 'Databases' && mssql:engineedition != 11", "group": "export" } + ], + "commandPalette": [ + { + "command": "dacFx.start", + "when": "mssql:engineedition != 11" + } ] } }, diff --git a/extensions/mssql/config.json b/extensions/mssql/config.json index fbea010331..23a0734cb8 100644 --- a/extensions/mssql/config.json +++ b/extensions/mssql/config.json @@ -1,6 +1,6 @@ { "downloadUrl": "https://github.com/Microsoft/sqltoolsservice/releases/download/v{#version#}/microsoft.sqltools.servicelayer-{#fileName#}", - "version": "3.0.0-release.46", + "version": "3.0.0-release.48", "downloadFileNames": { "Windows_86": "win-x86-netcoreapp3.1.zip", "Windows_64": "win-x64-netcoreapp3.1.zip", diff --git a/extensions/schema-compare/package.json b/extensions/schema-compare/package.json index fab2d1003c..a414413a39 100644 --- a/extensions/schema-compare/package.json +++ b/extensions/schema-compare/package.json @@ -72,6 +72,12 @@ "when": "connectionProvider == MSSQL && nodeType && nodeType == Server && mssql:engineedition != 11", "group": "export" } + ], + "commandPalette": [ + { + "command": "schemaCompare.start", + "when": "mssql:engineedition != 11" + } ] } },