Program.cs 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. using RDIFramework.Utilities;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Configuration;
  5. using System.Data;
  6. using System.IO;
  7. using System.Linq;
  8. using System.Text;
  9. using Topshelf;
  10. namespace TimedUpload
  11. {
  12. class Program
  13. {
  14. private static string programName = ConfigurationManager.AppSettings["serverName"];
  15. static void Main(string[] args)
  16. {
  17. log4net.Config.XmlConfigurator.ConfigureAndWatch(new FileInfo(AppDomain.CurrentDomain.BaseDirectory + "log4net.config"));
  18. try
  19. {
  20. HostFactory.Run(x =>
  21. {
  22. x.UseLog4Net();
  23. x.Service<ServiceRunner>();
  24. x.SetDescription(programName);
  25. x.SetDisplayName(programName);
  26. x.SetServiceName(programName);
  27. x.EnablePauseAndContinue();
  28. });
  29. }
  30. catch (Exception ex)
  31. {
  32. throw ex;
  33. }
  34. }
  35. }
  36. }