How to use AOT?
I've seen an option to activate AOT when I create a new project. I've not yet selected this option in any of my projects yet, so I don't know what functions it unlocks. What I'd like to do is to have the possibility to compile/deploy my existing projects with AOT. So far, I found no way to do so. Am I missing something here? As far as I remember, Visual studio offers AOT in the project settings…
Please sign in to leave a comment.
Andreas Hinterleitner Rider currently exposes a small subset of all possible project properties in the UI. We have plans to improve this in the future, but currently you'll have to manually set
<PublishAot>true</PublishAot>property in your.csprojfiles. You can find more information about AOT in Native AOT deployment.