14 lines
291 B
C#
14 lines
291 B
C#
using System.ComponentModel;
|
|
|
|
namespace SendNSWMessageService
|
|
{
|
|
[RunInstaller(true)]
|
|
public partial class ProjectInstaller : System.Configuration.Install.Installer
|
|
{
|
|
public ProjectInstaller()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
}
|