service.StartType = ServiceStartMode.Automatic 외에 설치 후 내 서비스가 시작되지 않습니다.
해결책
내 ProjectInstaller에이 코드를 삽입했습니다.
protected override void OnAfterInstall(System.Collections.IDictionary savedState)
{
base.OnAfterInstall(savedState);
using (var serviceController = new ServiceController(this.serviceInstaller1.ServiceName, Environment.MachineName))
serviceController.Start();
}
ScottTx와 Francis B.