.Net Core快速创建Windows服务

1.新建.Net Core控制台程序,添加新建项Windows服务: 修改Progran.cs:class Program{static void Main(string[] args){ServiceBase[] services = new ServiceBase[] { new WinService() };ServiceBase.Run(servic...

1.新建.Net Core控制台程序,添加新建项Windows服务:

 

修改Progran.cs:

class Program
    {
        static void Main(string[] args)
        {
            ServiceBase[] services = new ServiceBase[] { new WinService() };
            ServiceBase.Run(services);
        }
    }

 

 发布设置部署模式为 独立:

发布后文件里会有一个exe文件:

我们需要使用命令来将其创建为Windows服务:

sc create MyWinService binpath="***.exe"

 

停止服务:

sc stop MyService

卸载服务:

sc delete MyService

 

 

本文标题为:.Net Core快速创建Windows服务

基础教程推荐