From dd22b195bd8d709b8d107e6f43c31443af3bbe72 Mon Sep 17 00:00:00 2001 From: Charles Gagnon Date: Thu, 24 Sep 2020 09:05:59 -0700 Subject: [PATCH] Remove arc deployment extension check (#12598) --- extensions/arc/src/extension.ts | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/extensions/arc/src/extension.ts b/extensions/arc/src/extension.ts index 47668178e9..9df18413a8 100644 --- a/extensions/arc/src/extension.ts +++ b/extensions/arc/src/extension.ts @@ -55,8 +55,6 @@ export async function activate(context: vscode.ExtensionContext): Promise (await treeDataProvider.getChildren()) .filter(node => node instanceof ControllerTreeNode) @@ -82,14 +80,3 @@ export async function activate(context: vscode.ExtensionContext): Promise { - const version = vscode.extensions.getExtension('Microsoft.arcdeployment')?.packageJSON.version; - if (version && version !== '0.3.2') { - // If we have an older version of the deployment extension installed then uninstall it now since it's replaced - // by this extension. (the latest version of the Arc Deployment extension will uninstall itself so don't do - // anything here if that's already updated) - await vscode.commands.executeCommand('workbench.extensions.uninstallExtension', 'Microsoft.arcdeployment'); - vscode.window.showInformationMessage(loc.arcDeploymentDeprecation); - } -}