From ad19e48415f236aa3599ee7a850e70c1f507d110 Mon Sep 17 00:00:00 2001 From: neuromagus <63796667+neuromagus@users.noreply.github.com> Date: Wed, 10 Jul 2024 21:55:18 +0300 Subject: [PATCH 1/3] Update CHANGELOG.org --- CHANGELOG.org | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.org b/CHANGELOG.org index 6cb6b05fa4..29e859c92e 100644 --- a/CHANGELOG.org +++ b/CHANGELOG.org @@ -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 From 17447f5451ae0eb6b3cc3a91e91bbefd20521d1b Mon Sep 17 00:00:00 2001 From: neuromagus <63796667+neuromagus@users.noreply.github.com> Date: Wed, 10 Jul 2024 21:56:18 +0300 Subject: [PATCH 2/3] Update lsp-clients.json --- docs/lsp-clients.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/lsp-clients.json b/docs/lsp-clients.json index 529234b58c..b87170014b 100644 --- a/docs/lsp-clients.json +++ b/docs/lsp-clients.json @@ -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)" From 316d0e343cb31a07eb412b8b915657c32ed485f0 Mon Sep 17 00:00:00 2001 From: neuromagus <63796667+neuromagus@users.noreply.github.com> Date: Wed, 10 Jul 2024 21:59:36 +0300 Subject: [PATCH 3/3] Update lsp-roslyn.el --- clients/lsp-roslyn.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clients/lsp-roslyn.el b/clients/lsp-roslyn.el index a07b6dc1cb..d849755536 100644 --- a/clients/lsp-roslyn.el +++ b/clients/lsp-roslyn.el @@ -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"))