Hello!
I have a windows service (it is OWIN + Web API + SignalR app) and I want to port it to .NET Core. I did not implement my app as ASP.NET site because it has some background logic which is not a part of Request-Response stack (it's a game server). What is the best way of achieving this aim?
1. Rewrite app as ASP.NET app, disable app poll restarts so background processes would never stop.
2. Rewrite app as Console app and somehow start it when OS starts.
3. Wait for normal .NET Core Service implementation.
Thank you.