Is there a way to develop a windows service (able to start on boot etc...) with .NET Core?
All tutorials and instructions I find utilize System.ServiceProcess.ServiceBase which can not be found and added for some reason in Visual Studio 2015?
I also try to avoid using 3rd party tools/libraries like SrvStart. Something like Topshelf would be acceptable but seems to be not available for .NET core.
And it would be great if the service could run under windows and linux.
Any ideas how I could achieve this?