Can I use BackgroundService in dot net core console application

Viewed 3458

I know how to use background service in asp.net core

public class WatchMan : BackgroundService
{
    
}

I have a dot core console application which I want to run as window service, can I use BackgroundService or something similar there?

1 Answers
Related