From 9f77d9c0586906fd72de487c7379e06bca0aad91 Mon Sep 17 00:00:00 2001 From: Joey Robichaud Date: Mon, 10 Oct 2022 16:09:13 -0700 Subject: [PATCH] Update src/omnisharp/requirementCheck.ts Co-authored-by: Fred Silberberg --- src/omnisharp/requirementCheck.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/omnisharp/requirementCheck.ts b/src/omnisharp/requirementCheck.ts index bb3e3c4ab..54a435aa6 100644 --- a/src/omnisharp/requirementCheck.ts +++ b/src/omnisharp/requirementCheck.ts @@ -101,7 +101,7 @@ interface PromptItem extends vscode.MessageItem { async function promptToDownloadDotNetSDK() { return new Promise((resolve, reject) => { - const message = 'OmniSharp requires an install of the .NET SDK to provide language services when `omnisharp.useModernNet` is enabled in Settings. Please install the latest .NET SDK and restart.'; + const message = 'OmniSharp requires an install of the .NET SDK to provide language services when `omnisharp.useModernNet` is enabled in Settings. Please install the latest .NET SDK and restart vscode. If you continue see this error after installing .NET and restarting vscode, you may need to log out and log back in or restart your system for changes to the PATH to take effect.'; const messageOptions: vscode.MessageOptions = { modal: true };