Files
Web_Faces_Prod/Face.WindowsService/Program.cs

26 lines
549 B
C#
Raw Normal View History

2025-11-25 17:41:24 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.ServiceProcess;
using System.Text;
using System.Threading.Tasks;
namespace Face.WindowsService
{
static class Program
{
/// <summary>
/// 应用程序的主入口点。
/// </summary>
static void Main()
{
ServiceBase[] ServicesToRun;
ServicesToRun = new ServiceBase[]
{
new FaceService()
};
ServiceBase.Run(ServicesToRun);
}
}
}