关于[Building a Windows service with Worker Services and .NET Core 3.1, part 1: Introduction]的摘要:
ASP.NET Core 3 brings a very interesting new feature: Worker Service. What is a Worker Service? It’s an ASP.NET Core template that allows you to create hosted long-running background services. These background services implement the IHostedService interface, so they are called “hosted services”. What is interesting is that dependency injection is available natively, which was not the case with a Windows Service created with TopShelf. They can be deployed as a Windows service but also Linux daemons. In this article we will see how to create and deploy a Worker Service as a Windows Service