Files
DP44/Common/DTS.Common.Service/ProjectInstaller.cs

15 lines
318 B
C#
Raw Permalink Normal View History

2026-04-17 14:55:32 -04:00
using System.ComponentModel;
using System.ServiceProcess;
namespace DTS.Common.Service
{
[RunInstaller(true)]
public partial class ProjectInstaller : System.Configuration.Install.Installer
{
public ProjectInstaller()
{
InitializeComponent();
}
}
}