From 53a081262def003b42e3aefde6a1cbdccf795a4e Mon Sep 17 00:00:00 2001 From: Charles Gagnon Date: Mon, 21 Oct 2019 11:06:22 -0700 Subject: [PATCH] Fix BDC and resource-deploy extensions to not be packaged separately (#7858) * Fix BDC and resource-deploy extensions to not be packaged separately * Update js too --- build/lib/extensions.js | 3 +-- build/lib/extensions.ts | 4 +--- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/build/lib/extensions.js b/build/lib/extensions.js index 875daea9fc..bfae2bf319 100644 --- a/build/lib/extensions.js +++ b/build/lib/extensions.js @@ -200,8 +200,7 @@ const sqlBuiltInExtensions = [ 'dacpac', 'schema-compare', 'cms', - 'query-history', - 'resource-deployment' + 'query-history' ]; const builtInExtensions = process.env['VSCODE_QUALITY'] === 'stable' ? require('../builtInExtensions.json') : require('../builtInExtensions-insiders.json'); // {{SQL CARBON EDIT}} - End diff --git a/build/lib/extensions.ts b/build/lib/extensions.ts index e4a37253b2..081e0b6fb3 100644 --- a/build/lib/extensions.ts +++ b/build/lib/extensions.ts @@ -230,15 +230,13 @@ const sqlBuiltInExtensions = [ // the extension will be excluded from SQLOps package and will have separate vsix packages 'admin-tool-ext-win', 'agent', - 'big-data-cluster', 'import', 'profiler', 'admin-pack', 'dacpac', 'schema-compare', 'cms', - 'query-history', - 'resource-deployment' + 'query-history' ]; interface IBuiltInExtension {