Files
core/Test/Applications/TeamlabDocControlService/TeamlabDocControlService/ProjectInstaller.cs

22 lines
573 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Configuration.Install;
using System.ServiceProcess;
namespace TeamlabDocControlService
{
[RunInstaller(true)]
public partial class ProjectInstaller : Installer
{
public ProjectInstaller()
{
InitializeComponent();
}
private void serviceProcessInstaller1_AfterInstall(object sender, InstallEventArgs e)
{
//new ServiceController(serviceInstaller1.ServiceName).Start();
}
}
}