Skip to content

Commit

Permalink
fix download url
Browse files Browse the repository at this point in the history
  • Loading branch information
colombod committed Dec 4, 2023
1 parent eb14786 commit 0a28933
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/polyglot-notebooks-vscode-common/src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ export async function activate(context: vscode.ExtensionContext) {
}
} catch (e) {
showHelpPage = true;
vscode.window.showErrorMessage(`Please install the .NET SDK version ${minDotNetSdkVersion} from https://dotnet.microsoft.com/en-us/download/${minDotNetSdkVersion}`);
vscode.window.showErrorMessage(`Please install the .NET SDK version ${minDotNetSdkVersion} from https://dotnet.microsoft.com/en-us/download/dotnet/${minDotNetSdkVersion}`);
}

if (showHelpPage) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@

## The Polyglot Notebooks extension now requires .NET SDK Version 8.0.

## 1. Install [here](https://dotnet.microsoft.com/en-us/download/8.0)
## 1. Install [here](https://dotnet.microsoft.com/en-us/download/dotnet/8.0)
## 2. Restart VS Code
2 changes: 1 addition & 1 deletion src/polyglot-notebooks-vscode/help/DotNetVersion.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@

## The Polyglot Notebooks extension now requires .NET SDK Version 8.0.

## 1. Install [here](https://dotnet.microsoft.com/en-us/download/8.0)
## 1. Install [here](https://dotnet.microsoft.com/en-us/download/dotnet/8.0)
## 2. Restart VS Code

0 comments on commit 0a28933

Please sign in to comment.