在传统的Windows服务开发过程中,需要添加一个服务安装程序,里面写安装,启动和停止服务等逻辑.现在,使用TopSelf可以简化这个过程.具体请看官网说明: http://docs.topshelf-project.com/en/latest/index.html 开始前,先创建一个控制台程序,添加 Topshelf 程序包引用: Install-Package Topshelf 首先,继承 ServiceControl 写一个应用服务类: internal class AppService…