namespace Neo.Legitimate.WinService { partial class ProjectInstaller { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if(disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Component Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this._serviceProcessInstaller = new System.ServiceProcess.ServiceProcessInstaller(); this._serviceInstaller = new System.ServiceProcess.ServiceInstaller(); // // _serviceProcessInstaller // this._serviceProcessInstaller.Account = System.ServiceProcess.ServiceAccount.LocalSystem; this._serviceProcessInstaller.Password = null; this._serviceProcessInstaller.Username = null; // // _serviceInstaller // this._serviceInstaller.Description = "Manages Neo Legitimate services"; this._serviceInstaller.DisplayName = "Neo Legitimate Service Manager"; this._serviceInstaller.ServiceName = "NeoLegitimateService"; this._serviceInstaller.StartType = System.ServiceProcess.ServiceStartMode.Automatic; // // ProjectInstaller // this.Installers.AddRange(new System.Configuration.Install.Installer[] { this._serviceProcessInstaller, this._serviceInstaller}); } #endregion private System.ServiceProcess.ServiceProcessInstaller _serviceProcessInstaller; private System.ServiceProcess.ServiceInstaller _serviceInstaller; } }