From c6cc7fbc8c47f26fd59e630437edefe73159da1e Mon Sep 17 00:00:00 2001 From: Tanay Parikh Date: Wed, 15 Sep 2021 17:15:04 -0700 Subject: [PATCH] Update missing `dotnet` sdk error message For: https://github.com/OmniSharp/omnisharp-vscode/issues/4771 --- src/coreclr-debug/activate.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/coreclr-debug/activate.ts b/src/coreclr-debug/activate.ts index c45f98308..dd847716d 100644 --- a/src/coreclr-debug/activate.ts +++ b/src/coreclr-debug/activate.ts @@ -106,8 +106,8 @@ function showInstallErrorMessage(eventStream: EventStream) { function showDotnetToolsWarning(message: string): void { const config = vscode.workspace.getConfiguration('csharp'); if (!config.get('suppressDotnetInstallWarning', false)) { - const getDotNetMessage = 'Get the .NET Core SDK'; - const goToSettingsMessage = 'Disable this message in user settings'; + const getDotNetMessage = 'Get the SDK'; + const goToSettingsMessage = 'Disable message in settings'; const helpMessage = 'Help'; // Buttons are shown in right-to-left order, with a close button to the right of everything; // getDotNetMessage will be the first button, then goToSettingsMessage, then the close button. @@ -182,4 +182,4 @@ export class DebugAdapterExecutableFactory implements vscode.DebugAdapterDescrip // make VS Code launch the DA executable return executable; } -} \ No newline at end of file +}