You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When publishing for Windows today, the web SDK includes assets required to run the project on IIS, namely the ANCM module (aspnetcorev2_inprocess.dll) and a web.config file. As part of the work to support native AOT publish for ASP.NET Core, we should ensure that these assets are not included in the application output when the <PublishAot> property is set to true in the project file, as IIS hosting does not support native AOT published ASP.NET Core apps, i.e. set the default value of <PublishIISAssets> to false when <PublishAot> is true.
The text was updated successfully, but these errors were encountered:
When publishing for Windows today, the web SDK includes assets required to run the project on IIS, namely the ANCM module (aspnetcorev2_inprocess.dll) and a web.config file. As part of the work to support native AOT publish for ASP.NET Core, we should ensure that these assets are not included in the application output when the
<PublishAot>
property is set to true in the project file, as IIS hosting does not support native AOT published ASP.NET Core apps, i.e. set the default value of<PublishIISAssets>
to false when<PublishAot>
is true.The text was updated successfully, but these errors were encountered: