Marcin Jahn
Marcin Jahn
I'm using the following command to generate C# class based on openapi spec: ```sh dotnet nswag openapi2csclient \ /Input:my-openapi.json \ /Output:MyDto.cs \ /Namespace:MyContract \ /GenerateClientClasses:false \ /JsonLibrary:SystemTextJson \ /GenerateExceptionClasses:false \...
Extends support for recognizing class.outer for the following types: - classes with empty declarations ```cs public class MyClass {} ``` - structs with empty declarations ```cs public struct MyStruct {}...
**Describe the bug** Currently, the `class.outer` query supports only classes, while it seems that it should support all entities that represent "types": - `class` - `struct` - `record` - `enum`...
I noticed that csharp-ls will not show me errors in my repository until I open the files with issues manually. E.g., if I change the name of some class (without...
I wanted to create a simple LSP server. I looked at https://github.com/OmniSharp/csharp-language-server-protocol/tree/master/sample/SampleServer. The example works alright, I'm able to communicate with the server from neovim. I tried to create something...
The README.md should specify the version of the LSP spec being implemented by the library.
Type declarations such as: ```cs class MyClass1; class MyClass2(); interface IMyInterface1; interface IMyInterface2(); enum MyEnum1; enum MyEnum2(); ``` show up as errors in the syntax tree. The README says that...
I see a bunch of issues and open PRs, but they stay untouched since some time. Is this project still alive?
The version of Microsoft.CodeAnalysis.LanguageServer included in this repo (4.9.0-3.23604.10) works quite well. Out of curiosity, I tried to use the [latest version (4.12...)](https://dev.azure.com/azure-public/vside/_artifacts/feed/vs-impl/NuGet/Microsoft.CodeAnalysis.LanguageServer.linux-x64/overview/4.12.0-1.24327.4). The server gets initialized, I am able...
This issue is similar to https://github.com/Issafalcon/neotest-dotnet/issues/93. I have a solution with hundreds of test files. When I open any test file: 1. Running "nearest test" doesn't work initially 2. Opening...