Migrate a Topshelf service with Quartz to .NET 8 Worker service as Windows service
A common approach in the old days (.NET framework days) to create a windows service that run on a schedule is to use Topshelf as a hosting framework and use Quartz to schedule the job. Moving forward some time, Microsoft has introduced Worker service back in .NET Core 3, which basically replaced Topshelf. Today, I […]