Skip to content

Commit 84dc9fc

Browse files
Merge pull request #594 from DustinCampbell/tweak-unsupported-linux-distro-text
Tweak the message displayed when trying to acquire OmniSharp on an unsupported Linux distro
2 parents f8b05c7 + 9af0242 commit 84dc9fc

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/omnisharp/server.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -433,10 +433,11 @@ export abstract class OmnisharpServer {
433433
this._channel.appendLine("");
434434
this._channel.appendLine("OmniSharp provides a richer C# editing experience, with features like IntelliSense and Find All References.");
435435
this._channel.appendLine("It is recommend that you download the version of OmniSharp that runs on Mono using the following steps:");
436-
this._channel.appendLine(" 1. If it's not already installed, download and install Mono (http://www.mono-project.com)");
437-
this._channel.appendLine(" 2. Download and untar https://github.com/OmniSharp/omnisharp-roslyn/releases/download/v1.9-alpha13/omnisharp-linux-mono.tar.gz");
436+
this._channel.appendLine(" 1. If it's not already installed, download and install Mono (https://www.mono-project.com)");
437+
this._channel.appendLine(" 2. Download and untar the latest OmniSharp Mono release from https://github.com/OmniSharp/omnisharp-roslyn/releases/");
438438
this._channel.appendLine(" 3. In Visual Studio Code, select Preferences->User Settings to open settings.json.");
439439
this._channel.appendLine(" 4. In settings.json, add a new setting: \"csharp.omnisharp\": \"/path/to/omnisharp/OmniSharp.exe\"");
440+
this._channel.appendLine(" 4. In settings.json, add a new setting: \"csharp.omnisharpUsesMono\": true");
440441
this._channel.appendLine(" 5. Restart Visual Studio Code.");
441442
this._channel.show();
442443

0 commit comments

Comments
 (0)