/// <summary> /// The main entry point for the application. /// </summary> static void Main() { #if DEBUG Console.WriteLine("ProductLocationImporter importer console about to begin, continue?"); Console.ReadLine(); var importer = new Importer(); importer.Start(); Console.WriteLine("Debug - ProductLocationImporter console running - press any key to stop"); Console.ReadKey(); importer.Stop(); #else ServiceBase[] ServicesToRun; ServicesToRun = new ServiceBase[] { new ProductLocationService() }; ServiceBase.Run(ServicesToRun); #endif }
public ProductLocationService() { InitializeComponent(); importer = new Importer(); }