ComplianceServer/oldcode/Core.AliyuService/Program.cs

21 lines
437 B
C#

using System.ServiceProcess;
namespace Core.AliyuService
{
static class Program
{
/// <summary>
/// 应用程序的主入口点。
/// </summary>
static void Main()
{
ServiceBase[] ServicesToRun;
ServicesToRun = new ServiceBase[]
{
new CoreAliyunService()
};
ServiceBase.Run(ServicesToRun);
}
}
}