Dustin Campbell
Dustin Campbell
OmniSharp ships a very similar MSBuild discovery mechanism to this one. However, it verifies that the VS instance that it considers has the "Microsoft.VisualStudio.Components.Roslyn.Compiler" package installed. https://github.com/OmniSharp/omnisharp-roslyn/blob/master/src/OmniSharp.Host/MSBuild/Discovery/Providers/VisualStudioInstanceProvider.cs#L56-L57 It would be...
Currently, OmniSharp requires a single root folder or solution to be specified at start up with the `-s` command line switch. Soon, VS Code will provide support for multiple root...
It'd be great to be able to apply the "Convert to String Interpolation" to .NET APIs other than just String.Format(). For example: - Debug.WriteLine(string, params object[]) - Console.WriteLine(string, params object[])...
Just wanted to capture the suggestion made by @fsateler in issue #19 to allow users to annotate their own methods with a custom attribute which would allow the Convert to...
There are a lot of style choices in the razor-tooling code base made by previous maintainers that don't necessarily align with the current maintainers. Let's use this issue to discuss...
Fixes #10096 `Microsoft.VisualStudio.Razor.LanguageServerClient` has a reference to `Microsoft.AspNetCore.Razor.LanguageServer` along with `InternalsVisibleTo` access. This is unavoidable because we currently run the LanguageServer in-proc in VS when the LSP editor is active....
There are a number of places in Razor tooling where tasks are fired off and aren't awaited. Some of these are immediately scheduled on the dispatcher, so any faults will...