csharp-language-server-protocol
csharp-language-server-protocol copied to clipboard
Language Server Protocol in C#
I'm not sure whether the problem lies with the client or the server (or me?), but I'm observing the following behavior using VSCode 1.65.2 as the editor: 1. Open a...
I'm getting the following message from the sample server when I request semantic tokens from it: ``` { "jsonrpc": "2.0", "id": 3, "error": { "code": -32603, "message": "Internal Error -...
This bit of code in `GetSemanticTokenEdits` (lines 162 to 178) throws an `ArgumentOutOfRangeException` in the call to `ImmutableArray.Create` when you delete code in a document (but maybe in other cases...
I've just finished a pretty long debugging session when my language server stayed completely silent. I'm not using `LanguageServer.From(...)`, as I'm building my language server object using `AddLanguageServer` in the...
Now clangd and rust-analyzer provide inlay, if csharp-language-service can also provide one?
When running `build.sh` it fails with the following output:- ``` GNU bash, version 4.4.20(1)-release (x86_64-redhat-linux-gnu) Microsoft (R) .NET Core SDK version 6.0.100 Microsoft (R) Build Engine version 17.0.0+c9eb9dd64 for .NET...
Need to write up some high-level and lower-level documentation on how the server is supposed to work. What the overall goals and so on.
We're using this library to provide LSP support for [Bicep](https://github.com/Azure/bicep). We have an browser demo at https://aka.ms/bicepdemo which calls into the compiler code directly using Blazor/WASM, using Microsoft.JSInterop to compile,...
Hi, I am trying get the DAP client working with [vscode-lldb](https://github.com/vadimcn/vscode-lldb) server. Unfortunately, this server sends some responses without `seq` property set. For example, it sends the the following `initialize`...