SoraV2Utils/SoraV2Utils_Service/Program.cs
krjan02 26cde137c9
Some checks failed
Build and Relase / build-release (push) Failing after 38s
Build and Relase / create-release (push) Failing after 10s
Initial commit (1.0.0)
2025-01-13 16:27:29 +01:00

33 lines
829 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.ServiceProcess;
using System.Text;
using System.Threading.Tasks;
namespace SoraV2Utils_Service
{
internal static class Program
{
static void Main()
{
new ServiceLogger();
new ServiceSettings();
new AgentProcessHandler();
new ServiceIPC();
//System.Threading.Thread.Sleep(1000);
//Service1 service = new Service1();
//service.OnDebug();
//System.Threading.Thread.Sleep(System.Threading.Timeout.Infinite);
ServiceBase[] ServicesToRun;
ServicesToRun = new ServiceBase[]
{
new SoraV2UtilsService()
};
ServiceBase.Run(ServicesToRun);
}
}
}