Blazor WebAssembly support for .NET 8

Thank you so much for a helpful reply.

I deleted my comment and posted a new one. Sorry again.

FWIW - this is a very fair question. The OP was likely frustrated by the company he is trying to support indicating that it’s not a priority to them, when we truly are talking about hosting a static site, Netlify’s bread & butter. S3 buckets and other static containers can host Blazor WASM just fine… the issue must purely be with the pipeline. I can understand the OP’s frustration, but agree there’s no room for disrespect. The reply could be “No, we will never support that.” And the communication must still be respectful both ways. A better approach would be to respectfully convey that the feature is important to you and it should be a very low LOE change. I also feel that there is an audience of Blazor WASM customers, perhaps more than you think, that would like the Netlify platform.

Cheers

Netlify’s latest build image now supports using mise. So you could install .NET 8 or even 9 for that matter using the following command:

mise use -g dotnet

The above will install v9 (current latest), if you want v8:

mise use -g dotnet@8

Remember to append your actual build command to this. For example:

mise use -g dotnet && <actual build command>