Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ahead-of-time (AOT) compilation option needed #36

Open
ken-okabe opened this issue Aug 18, 2022 · 0 comments
Open

Ahead-of-time (AOT) compilation option needed #36

ken-okabe opened this issue Aug 18, 2022 · 0 comments
Labels
enhancement New feature or request

Comments

@ken-okabe
Copy link

From .NET 6.0, Ahead-of-time (AOT) compilation is supported.

Blazor WebAssembly supports ahead-of-time (AOT) compilation, where you can compile your .NET code directly into WebAssembly. AOT compilation results in runtime performance improvements at the expense of a larger app size.

https://docs.microsoft.com/en-us/aspnet/core/blazor/host-and-deploy/webassembly?view=aspnetcore-6.0#ahead-of-time-aot-compilation

Currently, I manually add the below to *.fspoj file, but I think it's very nice of Bolero Template to have the option to select true/false:

<PropertyGroup>
  <RunAOTCompilation>true</RunAOTCompilation>
</PropertyGroup>

Thanks for your work!

PS. I see .README.md is outdated for .NET SDK 5.0.

@Tarmil Tarmil added the enhancement New feature or request label Aug 18, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

2 participants