-
-
Notifications
You must be signed in to change notification settings - Fork 13
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
.NET7.0 AOT for clients and services? #1695
Comments
|
So AOT will probably wok fine by itself here, just don't do trimming (also because it's too freaking slow) and after a very quick look, it appears that single-file isn't compatible with reflection (I could easily be wrong about this). I'm not entirely sure that AOT is really that important for the services. On one hand, it'll make app startup a bit faster because we'd avoid JIT, on the other hand, the generated binaries would be roughly twice the size as IL binaries. I'm going to close this. |
Investigate new .NET7.0 AOT capabilities:
https://learn.microsoft.com/en-us/dotnet/core/deploying/native-aot/
The text was updated successfully, but these errors were encountered: