Files
Web_AUTSDATA_Mvc_Prod/AUTS.WindowsService/Program.cs
2025-11-20 13:11:05 +08:00

26 lines
549 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.ServiceProcess;
using System.Text;
using System.Threading.Tasks;
namespace AUTS.WindowsService
{
static class Program
{
/// <summary>
/// 应用程序的主入口点。
/// </summary>
static void Main()
{
ServiceBase[] ServicesToRun;
ServicesToRun = new ServiceBase[]
{
new AUTSService()
};
ServiceBase.Run(ServicesToRun);
}
}
}