MudBlazor / TryMudBlazor

A playground for trying out and testing MudBlazor components entirely in the browser.
https://try.mudblazor.com/
GNU General Public License v2.0
75 stars 37 forks source link

Consider adding antivirus/firewall bypasses to the site #57

Open peterthorpe81 opened 2 years ago

peterthorpe81 commented 2 years ago

Blazor WASM sites often get blocked by corporate firewalls because of the fetch of dll's. Firewalls will often identify them as unsafe due to the dll extension or the file starting with the "MZ" header (executable) meaning you can't access the tryblazor or mudblazor.com sites behind a lot of corporate firewalls.

This nuget package works well to bypass the issue by Xor'ing the dll's and changing the file extension on publish. https://github.com/stavroskasidis/BlazorWasmAntivirusProtection

henon commented 2 years ago

Interesting. Not sure how much work this is gonna be. Try.MudBlazor compiles assemblies on the fly and injects them into the browser cache before reloading the iframe and restarting Blazor with the newly compiled resources.

ScarletKuro commented 1 year ago

I would wait when Webcil will be fully released and supported in .NET.