Wayne Hiller
Wayne Hiller
I was looking at how to do this yesterday. Having it built in would be awesome.
I downgraded the SDK to 300 from 303 and forced its usage in global.json. It works however something keeps updating 300 to 303 again (Windows updates?). Very annoying, this needs...
I would be interested in working on this as well. It would be nice to get away from node/npm.webpack etc. and use the power of the ASP.NET Core pipeline.
Actually I did a bunch of digging through the docs and it seems a string should work as well. - From sw-precache docs: Each Object in the Array needs a...
I was reading through the sw-precache to workbox conversion notes at https://developers.google.com/web/tools/workbox/guides/migrations/migrate-from-sw and it states: Deprecated options Express-style wildcard routes are no longer supported. If you were using Express-style wildcard...
The value is being assigned from an object property returned from an API call. I will try and re-create from a standard Blazor Wasm project.
I have narrowed it down to this in a standard .Net 6 Blazor Wasm with API project: Note I am using Flurl for the API call. Client Index.razor ``` @code...
Definitely is a timing issue with the StateHasChanged call. Adding a Delay to the API call fixes the issue. ``` [HttpGet] [Route("getforecast")] public async Task GetForecast() { await Task.Delay(500); return...
@stsrki Will you be taking a look at this at all? If not I can clone the repo and debug to try an figure out what is happening.
I will have to take a look at it this weekend I don't really have a work around because I do not want to delay displaying every edit page for...