SharpCAT/SharpCATService/Program.cs

20 lines
452 B
C#
Raw Normal View History

2019-03-08 20:04:43 +01:00
using System.ServiceProcess;
namespace SharpCATService
{
2019-03-08 20:04:43 +01:00
internal static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
2019-03-08 20:04:43 +01:00
private static void Main()
{
ServiceBase[] ServicesToRun;
ServicesToRun = new ServiceBase[]
{
2019-03-08 20:04:43 +01:00
new Service()
};
ServiceBase.Run(ServicesToRun);
}
}
2019-03-08 20:04:43 +01:00
}