Native AOT (Ahead-of-time) deployment compiles your app to native code avoiding the need for a runtime. Compilation takes longer but the app runs faster, and with lower memory usage. Debugging may be more complicated relative to regular .NET applications.
The Solution Explorer project file contains the essential code required for this.
<PublishAot>true</PublishAot>
More details on AOT deployment here.
No comments:
Post a Comment