PageRenderTime 45ms CodeModel.GetById 22ms RepoModel.GetById 1ms app.codeStats 0ms

/Visual Studio 2008/CSWindowsService/ProjectInstaller.Designer.cs

#
C# | 59 lines | 33 code | 6 blank | 20 comment | 3 complexity | b04ee244f5dcb6a1df37150938edefd7 MD5 | raw file
  1. namespace CSWindowsService
  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.LocalService;
  34. this.serviceProcessInstaller1.Password = null;
  35. this.serviceProcessInstaller1.Username = null;
  36. //
  37. // serviceInstaller1
  38. //
  39. this.serviceInstaller1.Description = "All-In-One Code Framework Windows Service Sample";
  40. this.serviceInstaller1.DisplayName = "CSWindowsService Sample Service";
  41. this.serviceInstaller1.ServiceName = "CSWindowsService";
  42. //
  43. // ProjectInstaller
  44. //
  45. this.Installers.AddRange(new System.Configuration.Install.Installer[] {
  46. this.serviceProcessInstaller1,
  47. this.serviceInstaller1});
  48. }
  49. #endregion
  50. private System.ServiceProcess.ServiceProcessInstaller serviceProcessInstaller1;
  51. private System.ServiceProcess.ServiceInstaller serviceInstaller1;
  52. }
  53. }