Skip to content

Commit 567990b

Browse files
authored
Fix roslyn path (404 error) (#4493)
1 parent 08f45a3 commit 567990b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

CHANGELOG.org

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* Add support for Meson build system. (~meson-mode~).
77
* Add support for go to definition for external files (.dll) in CSharp projects for OmniSharp server.
88
* Added a new optional ~:action-filter~ argument when defining LSP clients that allows code action requests to be modified before they are sent to the server. This is used by the Haskell language server client to work around an ~lsp-mode~ parsing quirk that incorrectly sends ~null~ values instead of ~false~ in code action requests.
9-
* Add support for C# via the [[https://github.com/dotnet/roslyn/tree/main/src/Features/LanguageServer][Roslyn language server]].
9+
* Add support for C# via the [[https://github.com/dotnet/roslyn/tree/main/src/LanguageServer][Roslyn language server]].
1010
* Add basic support for [[https://microsoft.github.io/language-server-protocol/specifications/lsp/3.17/specification/#textDocument_pullDiagnostics][pull diagnostics]] requests.
1111

1212
** 9.0.0

clients/lsp-roslyn.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828

2929
(defgroup lsp-roslyn nil
3030
"LSP support for the C# programming language, using the Roslyn language server."
31-
:link '(url-link "https://github.com/dotnet/roslyn/tree/main/src/Features/LanguageServer")
31+
:link '(url-link "https://github.com/dotnet/roslyn/tree/main/src/LanguageServer")
3232
:group 'lsp-mode
3333
:package-version '(lsp-mode . "8.0.0"))
3434

docs/lsp-clients.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@
140140
"common-group-name": "csharp",
141141
"full-name": "C# (csharp-roslyn)",
142142
"server-name": "Microsoft.CodeAnalysis.LanguageServer (Roslyn)",
143-
"server-url": "https://github.com/dotnet/roslyn/tree/main/src/Features/LanguageServer",
143+
"server-url": "https://github.com/dotnet/roslyn/tree/main/src/LanguageServer",
144144
"installation": "Supports automatic installation via NuGet",
145145
"lsp-install-server": "csharp-roslyn",
146146
"debugger": "Yes (netcoredbg)"

0 commit comments

Comments
 (0)