12345678910111213141516171819202122232425262728293031323334 |
-
- using System.ServiceProcess;
- namespace Foghorn.WindowsService
- {
- internal static class Program
- {
-
-
-
- private static void Main()
- {
- var servicesToRun = new ServiceBase[] {new FoghornWindowsService()};
- ServiceBase.Run(servicesToRun);
- }
- }
- }
|