Tanay Parikh
Tanay Parikh
razor/mapToDocumentRanges hangs when called via Roslyn.CodeActionResolve -> CSharpSpanMappingService
Extension of https://github.com/dotnet/aspnetcore/issues/27825. So that https://github.com/dotnet/roslyn/pull/49592 can be reverted. Occurs when a code action is attempted to be resolved. Ex. ``` @Debugger.Launch() ``` you select the lightbulb and hover over...
1. Create an empty `.razor`/`.cshtml` file 2. Paste in: ```html do string foo something const string you know what is going on? ``` Expected: - no coloring for `do`, `const`,...
Per https://docs.python.org/3.7/library/functions.html#open, the `+` is for `open a disk file for updating (reading and writing)`. Per the example, if we're looking to just read/write, the `+` isn't necessary. - [x]...
Steps to reproduce: 1. Create a WPF or Winforms app and enable Blazor as described here Build a Windows Presentation Foundation (WPF) Blazor app | Microsoft Learn 2. Run the...
https://user-images.githubusercontent.com/14852843/200969269-0893e51e-f9a5-480e-9306-a39297834f11.mov
Not sure if this is a "bug" in the Sample project, or if this is something that should be prohibited at a framework level: https://user-images.githubusercontent.com/14852843/201446787-bfb7f1f2-eaa9-43e6-9cf9-fd27e2897091.mov
This issue is to track synchronizing any (new) blazor wasm perf tests we add, with Blazor Hybrid. We want to ensure the two have similar levels and areas of coverage.
_WIP; published for CI testing_
Final question: is there any straightforward way for a developer to prevent the overscroll/bounce effect when scrolling the root scroll container? Having overscroll at the page root makes it feel...
## Summarization Support light bulbs for unused variables. - [CA1801: Review unused parameters](https://docs.microsoft.com/en-us/visualstudio/code-quality/ca1801?view=vs-2019) - [CA1804: Remove unused locals](https://docs.microsoft.com/en-us/visualstudio/code-quality/ca1804?view=vs-2019) - [CA1823: Avoid unused private fields](https://docs.microsoft.com/en-us/visualstudio/code-quality/ca1823?view=vs-2019) - IDE0051: Private member `xyz` is...