Allison Chou
Allison Chou
Repro steps: 1. Open a .razor file, type `
After updating Roslyn package versions in https://github.com/dotnet/razor-tooling/pull/6298, we now receive a warning that `RazorBrokeredServiceImplementation.GetSolutionAsync` is obsolete. We should replace the current usage with the updated method `RunServiceAsync`: https://github.com/dotnet/razor-tooling/blob/71edead16834aefba06e9264d66cb18936b71368/src/Razor/src/Microsoft.CodeAnalysis.Remote.Razor/RemoteTagHelperProviderService.cs#L39
We should have more tests directly use the C# language server since we have that capability now. - [x] Completion - [x] Completion resolve - [x] Document highlight - [...
We should consider adding more options to Razor to turn on/off certain settings such as onAutoInsert and attribute quotes. HTML supports these settings in their LSP editor today, however these...
Tracking issue on the Razor side for adding editorconfig support in Razor. Will likely need to discuss with Platform since the bulk of the work may need to be done...
[View Complete Diff of Changes](https://github.com/dotnet/fsharp/compare/da42031ad1cf0880768dfedac75c782b721cd175...de216eb65d741d01aff5d32a4bdc495ca730290a?w=1) - [Fix 13944 (13946)](https://github.com/dotnet/fsharp/pull/13946) - [Localized file check-in by OneLocBuild Task: Build definition ID 499: Build ID 1998941 (13941)](https://github.com/dotnet/fsharp/pull/13941)
F# semantic tokens will currently not work with the LSP semantic tokens feature flag enabled. The primary hurdle is designing a way to retrieve F# classification types and include them...
Since syntax trees aren't supported in F#, this line throws an exception upon opening a default F# console app: https://github.com/dotnet/roslyn/blob/2297cd72e2224d140ba639d75432ddd0b0b5f0e7/src/Features/LanguageServer/Protocol/Handler/Highlights/DocumentHighlightHandler.cs#L72 cc @dibarbet
Today, we have to set breakpoints in the *.js equivalent of our *.ts files. We should be able to set breakpoints directly in *.ts files.
This seems to be a pre-existing bug (i.e. present before feature branch). As the title implies, if a user tries to access C# features (e.g. find-all-refs, hover, etc.) before the...