Exchange_1C_Counterparty/HRM_MQ_Consumer_Service/ProjectInstaller.cs
2025-07-10 16:35:13 +05:00

20 lines
439 B
C#

using System;
using System.Collections;
using System.Collections.Generic;
using System.ComponentModel;
using System.Configuration.Install;
using System.Linq;
using System.Threading.Tasks;
namespace HRM_MQ_Consumer_Service
{
[RunInstaller(true)]
public partial class ProjectInstaller : System.Configuration.Install.Installer
{
public ProjectInstaller()
{
InitializeComponent();
}
}
}