ASP.NET Core introduced hosted services, which are a great way to execute tasks in the background. An ASP.NET Core web application can use them. This is perfect for updating background-running software that may affect all users. As an alternative, a Worker Service template can be used to run them. This can be configured as a…