60 lines
2.5 KiB
C#
60 lines
2.5 KiB
C#
namespace HRM_MQ_Consumer_Service
|
||
{
|
||
partial class ProjectInstaller
|
||
{
|
||
/// <summary>
|
||
/// Обязательная переменная конструктора.
|
||
/// </summary>
|
||
private System.ComponentModel.IContainer components = null;
|
||
|
||
/// <summary>
|
||
/// Освободить все используемые ресурсы.
|
||
/// </summary>
|
||
/// <param name="disposing">истинно, если управляемый ресурс должен быть удален; иначе ложно.</param>
|
||
protected override void Dispose(bool disposing)
|
||
{
|
||
if (disposing && (components != null))
|
||
{
|
||
components.Dispose();
|
||
}
|
||
base.Dispose(disposing);
|
||
}
|
||
|
||
#region Код, автоматически созданный конструктором компонентов
|
||
|
||
/// <summary>
|
||
/// Требуемый метод для поддержки конструктора — не изменяйте
|
||
/// содержимое этого метода с помощью редактора кода.
|
||
/// </summary>
|
||
private void InitializeComponent()
|
||
{
|
||
this.serviceProcessInstaller1 = new System.ServiceProcess.ServiceProcessInstaller();
|
||
this.serviceInstaller1 = new System.ServiceProcess.ServiceInstaller();
|
||
//
|
||
// serviceProcessInstaller1
|
||
//
|
||
this.serviceProcessInstaller1.Account = System.ServiceProcess.ServiceAccount.LocalService;
|
||
this.serviceProcessInstaller1.Password = null;
|
||
this.serviceProcessInstaller1.Username = null;
|
||
//
|
||
// serviceInstaller1
|
||
//
|
||
this.serviceInstaller1.Description = "Message queue consumer";
|
||
this.serviceInstaller1.DisplayName = "1C HRM RabbitMQ Consumer";
|
||
this.serviceInstaller1.ServiceName = "1C HRM RabbitMQ Consumer";
|
||
this.serviceInstaller1.StartType = System.ServiceProcess.ServiceStartMode.Automatic;
|
||
//
|
||
// ProjectInstaller
|
||
//
|
||
this.Installers.AddRange(new System.Configuration.Install.Installer[] {
|
||
this.serviceProcessInstaller1,
|
||
this.serviceInstaller1});
|
||
|
||
}
|
||
|
||
#endregion
|
||
|
||
private System.ServiceProcess.ServiceProcessInstaller serviceProcessInstaller1;
|
||
private System.ServiceProcess.ServiceInstaller serviceInstaller1;
|
||
}
|
||
} |