ProjectInstaller.Designer.cs 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. namespace Foghorn.WindowsService
  2. {
  3. partial class ProjectInstaller
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Component Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.serviceProcessInstaller1 = new System.ServiceProcess.ServiceProcessInstaller();
  29. this.serviceInstaller1 = new System.ServiceProcess.ServiceInstaller();
  30. //
  31. // serviceProcessInstaller1
  32. //
  33. this.serviceProcessInstaller1.Account = System.ServiceProcess.ServiceAccount.LocalSystem;
  34. this.serviceProcessInstaller1.Password = null;
  35. this.serviceProcessInstaller1.Username = null;
  36. //
  37. // serviceInstaller1
  38. //
  39. this.serviceInstaller1.Description = "Push notification to Growl for systems using service-oriented architecture";
  40. this.serviceInstaller1.DisplayName = "Foghorn (Growl for SOA)";
  41. this.serviceInstaller1.ServiceName = "FoghornWindowsService";
  42. this.serviceInstaller1.StartType = System.ServiceProcess.ServiceStartMode.Automatic;
  43. //
  44. // ProjectInstaller
  45. //
  46. this.Installers.AddRange(new System.Configuration.Install.Installer[] {
  47. this.serviceProcessInstaller1,
  48. this.serviceInstaller1});
  49. }
  50. #endregion
  51. private System.ServiceProcess.ServiceProcessInstaller serviceProcessInstaller1;
  52. private System.ServiceProcess.ServiceInstaller serviceInstaller1;
  53. }
  54. }