Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix roslyn path (404 error) #4493

Merged
merged 3 commits into from
Jul 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.org
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* Add support for Meson build system. (~meson-mode~).
* Add support for go to definition for external files (.dll) in CSharp projects for OmniSharp server.
* 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.
* Add support for C# via the [[https://github.com/dotnet/roslyn/tree/main/src/Features/LanguageServer][Roslyn language server]].
* Add support for C# via the [[https://github.com/dotnet/roslyn/tree/main/src/LanguageServer][Roslyn language server]].
* Add basic support for [[https://microsoft.github.io/language-server-protocol/specifications/lsp/3.17/specification/#textDocument_pullDiagnostics][pull diagnostics]] requests.

** 9.0.0
Expand Down
2 changes: 1 addition & 1 deletion clients/lsp-roslyn.el
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

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

Expand Down
2 changes: 1 addition & 1 deletion docs/lsp-clients.json
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@
"common-group-name": "csharp",
"full-name": "C# (csharp-roslyn)",
"server-name": "Microsoft.CodeAnalysis.LanguageServer (Roslyn)",
"server-url": "https://github.com/dotnet/roslyn/tree/main/src/Features/LanguageServer",
"server-url": "https://github.com/dotnet/roslyn/tree/main/src/LanguageServer",
"installation": "Supports automatic installation via NuGet",
"lsp-install-server": "csharp-roslyn",
"debugger": "Yes (netcoredbg)"
Expand Down
Loading