Skip to content

Commit 4ed946f

Browse files
authored
Merge pull request #4773 from TanayParikh/patch-1
Update missing `dotnet` sdk error message
2 parents 3587ab9 + c6cc7fb commit 4ed946f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/coreclr-debug/activate.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,8 @@ function showInstallErrorMessage(eventStream: EventStream) {
106106
function showDotnetToolsWarning(message: string): void {
107107
const config = vscode.workspace.getConfiguration('csharp');
108108
if (!config.get('suppressDotnetInstallWarning', false)) {
109-
const getDotNetMessage = 'Get the .NET Core SDK';
110-
const goToSettingsMessage = 'Disable this message in user settings';
109+
const getDotNetMessage = 'Get the SDK';
110+
const goToSettingsMessage = 'Disable message in settings';
111111
const helpMessage = 'Help';
112112
// Buttons are shown in right-to-left order, with a close button to the right of everything;
113113
// getDotNetMessage will be the first button, then goToSettingsMessage, then the close button.
@@ -182,4 +182,4 @@ export class DebugAdapterExecutableFactory implements vscode.DebugAdapterDescrip
182182
// make VS Code launch the DA executable
183183
return executable;
184184
}
185-
}
185+
}

0 commit comments

Comments
 (0)