Is BrowserUriHelper not accessible in Blazor applications?
The BrowserUriHelper has been renamed WebAssemblyUriHelper. Use WebAssemblyUriHelper to achieve your requirement. Refer to the thread BrowserUriHelper is dead, right? for more information.
How do you debug a client-side Blazor app in VS Code?
For now, there is no option to debug a client-side Blazor application in VS Code, although the debugging of server-side applications is possible. Refer to the thread debug Blazor in VS Code for more information.
Is the “Add new item” option for adding Razor components to a Razor page app not available for Blazor applications?
No, but it is in the implementation state and will be available in the upcoming release. Refer to the following issue threads for more information: “Add New Item” of Type “Razor Component” to a Razor Pages App Razor component item templates
Where are the compiled CS files generated for Razor files of Blazor applications?
You can find the generated CS files in the following location of Blazor client-side applications. {{APPLICATION_ROOT}}/obj/Debug/netstandard2.0/Razor/Pages
Why do tasks returned from JSRuntime.InvokeAsync during OnInitAsync never finish in Blazor?
This is a known bug and is resolved in the upcoming release of Blazor Preview 3. [Issue Resolved] [wwwroot/index.html] [Razor] Refer to the thread Tasks returned from JSRuntime.InvokeAsync during OnInitAsync never finishes for more information.