Summary
ASP.NET Core and the .NET CLI already contain all the tools to get up and running on various platforms and to set it up to get it ready for Azure and IIS, as well as NGINX. This is super easy, and well described in the documentation.
Currently, we have WebHostBuilder
that creates the hosting environment of the applications. In version 3.0, we have HostBuilder
, which is able to create a hosting environment that is completely independent from any web context.
In the final chapter of the book, we will have a look into the new endpoint routing that allows you to create your own hosted endpoints in an easy and flexible manner.