This commit is contained in:
Richard Lander 2019-07-18 10:51:37 -07:00
Родитель 7892ae13b3
Коммит 109bb6e402
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -398,7 +398,7 @@
"csharp.suppressDotnetInstallWarning": {
"type": "boolean",
"default": false,
"description": "Suppress the warning that the .NET SDK is not on the path."
"description": "Suppress the warning that the .NET Core SDK is not on the path."
},
"csharp.unitTestDebuggingOptions": {
"type": "object",

Просмотреть файл

@ -90,7 +90,7 @@ function showDotnetToolsWarning(message: string): void {
vscode.window.showErrorMessage(message,
goToSettingsMessage, getDotNetMessage).then(value => {
if (value === getDotNetMessage) {
let dotnetcoreURL = 'https://dotnet.microsoft.com/download';
let dotnetcoreURL = 'https://dot.net/core-sdk-vscode';
vscode.env.openExternal(vscode.Uri.parse(dotnetcoreURL));
} else if (value === goToSettingsMessage) {