除了服务之外。 StartType = ServiceStartMode。自动服务在安装后不会启动
解决方案
将此代码插入到我的 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。