csharp-language-server
csharp-language-server copied to clipboard
Roslyn-based LSP language server for C#
# Introduction Hi, ı am using neovim for a while but still having problems with lua. I am %90 okay with my setup but csharp lsp formatting gives me this...
If I create a cs file in neovim(with Neotree), csharp-ls will print "No parent project could be resolved to add file" message. It looks like changed "E:" to "e%3A" and...
Currently the log level argument doesn't do anything. I like to configure the log output, so csharp-ls does only print error messages
I tried to use the c-sharp-server in neovim, but I ran into a error. So I tried to run the server just by itself and I got: ---------------- You must...
Hi! If you call code actions for a variable, the action list looks like this:  I guess there is some missing text in the lines starting with a lowercase...
Hello! Possibly related to https://github.com/razzmatazz/csharp-language-server/issues/33. I had to install the x64 distributions of the .NET SDK for things to work. It was weird because `csharp-ls` was not crashing when I...
Hi, thanks for the great project! I'm having issues with exclusion of some directories. I'm using [direnv](https://direnv.net/) (with [nix](https://nixos.org/) on linux) which puts, in the project directory, a `.direnv` directory...
Hi ! I may have missed something but I feel like currently there is no way to handle Release/Debug configurations. The main point of this request is for stuff like...
I've tried to configure the language server in Coc as follows: { "languageserver": { "csharp-ls": { "command": "csharp-ls", "filetypes": ["cs"], "rootPatterns": ["*.csproj", ".vim/", ".git/", ".hg/"] } } } But it...
This PR reimplements push diagnostics by removing Diagnostics actor by merging it into Server State actor. Preceeds #174