SerratedSharp

Results 24 comments of SerratedSharp

Another pitfall perhaps worth noting in documention, is if you use the Project Properties dialog, it can add these sections elsewhere in the project, and the DebugType=full will overwrite DebugType=portable...

> This is a feature that may be missing in the runtime debugger, which we only bundle from the original source. That being said, since Blazor does not support threading,...

Yep, most of the newer interop features that were introduced in .NET 7 including everything under System.Runtime.InteropServices.JavaScript are maintained under dotnet/runtime. It can be a bit confusing sometimes figuring out...

So I spent a few hours messing with this cause someone on stackoverflow was also asking about it. It seems like the Bootstrap documentation is missing one (or two?) things....

I've also gotten this error when I've accidentally set my WASM project as the startup project, which tries to run it as a console app. Just FYI for anyone else...

Hey Jerome, Using 17.4.3. I'm not using the dev server in the WASM project, so I assume that's why it's different than expected. It gets built and then served from...

@jeromelaban I use a MVC/WebAPI project as the web host and serve the WASM package as static files from that, analogous to how I'd load any other client side static...

Looks like this might have been fixed by this change: https://github.com/unoplatform/Uno.Wasm.Bootstrap/pull/728 I am guessing this is probably in a more recent -dev build? I'm more of a DevOps person so...

Using newest dev build it seems to be working now, no errors and the info body gets populated, but the white loading overlay doesn't disappear. Is it possible to give...

One thing I noticed is I am getting duplicate uno-body elements. The one I declare per embedded mode instructions, and then an additional one added by the embedded.js I don't...