mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-16 19:56:42 +08:00
22 lines
573 B
C#
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();
|
|
}
|
|
}
|
|
} |