Hi @김대근 ,
Is dotnet.wasm, the runtime of blazor, mono? Or did you make it yourself as part of the dotnet core?
Please refer the official document, the software development kit (SDK) includes everything you need to build and run .NET Core applications, using command-line tools and any editor (like Visual Studio). And the asp.net core runtime includes everything you need to run .NET Core applications. The runtime is also included in the SDK.
Blazor WebAssembly is a single-page app (SPA) framework for building interactive client-side web apps with .NET, it is not the runtime of the Blazor. When a Blazor WebAssembly app is built and run in a browser:
- C# code files and Razor files are compiled into .NET assemblies.
- The assemblies and the .NET runtime are downloaded to the browser.
- Blazor WebAssembly bootstraps the .NET runtime and configures the runtime to load the assemblies for the app. The Blazor WebAssembly runtime uses JavaScript interop to handle DOM manipulation and browser API calls.
More detail information, see Blazor WebAssembly.
If the answer is helpful, please click "Accept Answer" and upvote it.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.
Best Regards,
Dillion