YourService.designer.cs:
using System; using System.ServiceProcess; using System.Timers; namespace YourNamespace { public partial class YourService : ServiceBase { #region Constructors/Destructors public YourService() { InitializeComponent(); // TODO: Add code here to initialize your service } #endregion #region Public Methods // Added to allow for the Console app to start. public void StartConsole(string[] args) { OnStart(args); } // Added to cleanly stop the Console app. public void StopConsole() { OnStop(); } #endregion #region Overrides protected override void OnStart(string[] args) { // TODO: Add code here to start your service. } protected override void OnStop() { // TODO: Add code here to perform any tear-down // necessary to stop your service. } #endregion } }
Proper attribution for the meat of the code above needs to be given to Eienar Egilsson. Go check out the many contributions he's made to the art of development.
Program.cs:
using System; using System.ServiceProcess; namespace YourNamespace { static class Program { /// <summary> /// The main entry point for the application. /// </summary> public static void Main(string[] args) { YourService service; if (Environment.UserInteractive) { Console.WriteLine("Press Escape to stop program"); service = new YourService(); service.StartConsole(args); while (true) { var cki = Console.ReadKey(); if (cki.Key == ConsoleKey.Escape) break; } service.StopConsole(); } else { service = new YourService(); var servicesToRun = new ServiceBase[] { service }; ServiceBase.Run(servicesToRun); } } } }
No comments:
Post a Comment