SharpCAT/SharpCATService/Program.cs
2019-03-08 13:04:43 -06:00

20 lines
452 B
C#

using System.ServiceProcess;
namespace SharpCATService
{
internal static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
private static void Main()
{
ServiceBase[] ServicesToRun;
ServicesToRun = new ServiceBase[]
{
new Service()
};
ServiceBase.Run(ServicesToRun);
}
}
}