Skip to content

Commit

Permalink
Fix #76, fix #77: Avoid blocking of extension activation when checkin…
Browse files Browse the repository at this point in the history
…g dependencies of .NET runtime on Linux
  • Loading branch information
Rpinski committed Jul 5, 2021
1 parent a9b1cb4 commit 4ef8708
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vscode-extension/src/dotnet-acquire/acquire.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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());
Expand Down

0 comments on commit 4ef8708

Please sign in to comment.