using Neo.Afx.WinService.Workflows; using System; using System.ServiceProcess; namespace Neo.LegitimateLicences.WinService { static class Program { /// /// The main entry point for the application. /// static void Main() { ConfigureService.Configure(); //var servicesToRun = new ServiceBase[] //{ // new ProjectService() //}; //ServiceBase.Run(servicesToRun); } } }