boost1231
boost1231
@maxle5 I have gotten around the pipes issue by making the below modification to program.cs in the Roslyn repo: https://github.com/dotnet/roslyn/blob/main/src/Features/LanguageServer/Microsoft.CodeAnalysis.LanguageServer/Program.cs#L119 ``` // var (clientPipeName, serverPipeName) = CreateNewPipeNames(); // var pipeServer...
Looks like an issue was opened up in the Roslyn repo to address the issue with handling textDocument/didChange notifications: https://github.com/dotnet/roslyn/issues/70392 To continue testing, I applied this patch locally to the...
@jmederosalvarado Thanks for putting this plugin together! I have not fully digested it yet, but just have a few questions. 1. Were there any reasons you chose to add a...
Thanks for the detailed response, and nice work! Much appreciated.
I find that when I make code changes to FileA that breaks code in a FileB that is loaded in another hidden buffer, diagnostics are not reported when I switch...