Previously, we discussed the differences between https://stackify.com/kestrel-web-server-asp-net-core-kestrel-vs-iis/. In this article, we will review how to deploy an ASP.NET Core application to IIS.

However, ASP.NET Core hosting is different compared to hosting with ASP.NET, because ASP.NET Core uses different configurations.

All ASP.NET Core applications require a WebHost object that essentially serves as the application and web server.

Before you deploy your application, you need to install the.NET Core hosting bundle for IIS –.NET Core runtime, libraries and the ASP.NET Core module for IIS.

Related Articles