Skip to content

Basic example of how to compile C# inside a Blazor WASM app

License

Notifications You must be signed in to change notification settings

LostBeard/BlazorWASMScriptLoader

Repository files navigation

BlazorWASMScriptLoader

Basic example of how to compile and run .Net code at runtime in Blazor WebAssembly.

Update for .Net 8:

In .Net 8, Blazor WASM apps use .wasm files by default instead of .dll files. This is the Webcil format and it "addresses environments that block clients from downloading and executing DLLs". The problem is .wasm files do not contain the MetadataReference data like the .dll files do. A workaround is to switch back to using .dlls by using the <WasmEnableWebcil>false</WasmEnableWebcil> tag in the project .csproj file.

About

Basic example of how to compile C# inside a Blazor WASM app

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published