using System.ServiceProcess; namespace CPE.App.NotifyService { internal static class Program { /// /// The main entry point for the application. /// private static void Main() { var servicesToRun = new ServiceBase[] { new NotifyMonitor() }; ServiceBase.Run(servicesToRun); } } }