From 4ef8708d826f1f138129ab26b48b732f3d524eaa Mon Sep 17 00:00:00 2001 From: Andreas Weizel Date: Mon, 5 Jul 2021 22:25:52 +0200 Subject: [PATCH] Fix #76, fix #77: Avoid blocking of extension activation when checking dependencies of .NET runtime on Linux --- vscode-extension/src/dotnet-acquire/acquire.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vscode-extension/src/dotnet-acquire/acquire.ts b/vscode-extension/src/dotnet-acquire/acquire.ts index 995014fb..6080c581 100644 --- a/vscode-extension/src/dotnet-acquire/acquire.ts +++ b/vscode-extension/src/dotnet-acquire/acquire.ts @@ -36,7 +36,7 @@ export async function acquireDotnetRuntime( if (dotnetPath) { await vscode.commands.executeCommand("dotnet.ensureDotnetDependencies", { command: dotnetPath, - arguments: [ILSpyBackend.getExecutable(context)], + arguments: ["--info"], }); } else { vscode.window.showWarningMessage(formatAcquireError());