Implementing a logger provider for Blazor WASM
This is a cross-post of this question but I still miss the last pieces I believe: https://github.com/dotnet/aspnetcore/discussions/24697 ---------- I'm trying to implement a logger provider for Blazor WASM. The provider requires a HTTP client to…
My "QueryAsync" never gets to the "return" statement
I'm using server Blazor with Dapper, using Alan Simpsons YouTube Tutorial. The PlantList.razor Page triggers the generation of a plant list in the PlantService.cs file. The query executes the stored procedure but never gets to the "return…
Azure Static Web APP for Blazor CI build error after update to Net 5.0
After updating my Blazor Webassembly project to .Net 5.0 I get an error in the CI build: ... Microsoft (R) Build Engine version 16.8.0+126527ff1 for .NET Copyright (C) Microsoft Corporation. All rights reserved. Determining projects to…
Azure Publish Asp.net core 5.0 hosted web assembly ( VS 2019)
I've created a new Asp.NET Core 5.0 Blazor web assembly hosted on Asp.net core server. Publishing the app to Azure is taking longer times. I notice lots of dll's getting copied/uploaded in the build output view every time the app is published. Could you…
Invoke Edge screen reader on Blazor WASM webpage
Microsoft had decided to make all technology to be WCAG 2.1 compliant. However, I was unable to locate any accessibility features' documentation for Blazor. https://learn.microsoft.com/en-us/aspnet/core/blazor/?view=aspnetcore-5.0 I am…
Blazor WASM Lazy Loaded Assemblies and DI registration.
I'm exploring BLAZOR WASM as a potential replacement to our LOB silverlight App. One of our requirements is to lazy load business capability libraries based on user role, and when the user want to go into that business capability. Currently we use MEF…
.Net5 Blazor application
Hi, I have a project I'm developing using .Net Core 3.1 for a Blazor server-side project. As I only started this recently, I thought why not move the code to .Net5. So I've just copied and pasted most of my application over and renamed the namespaces…
Blazor Host binding workaround
Have a great day too all of you. Blazor is been considered as replacement for JavaScript but when I looked into it, it doesn't have access to DOM elements. Biggest blocker in considering C# as front end language. I want my website to have smooth…
How to automatically refresh an access_token using a refresh_token in a Blazor WebAssembly app in the background?
I would like to refresh an access_token using a refresh_token in a Blazor WebAssembly app in the background without the user involved. Also I want to know if this is a common use case or not? Thank you, Marco