1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2025-01-03 13:34:54 +00:00
Lidarr/CassiniDev/Misc/ServiceInstaller.cs
2010-10-02 12:01:43 -07:00

37 lines
880 B
C#

using System;
using System.Collections;
using System.Collections.Generic;
using System.ComponentModel;
using System.Configuration.Install;
using System.Linq;
using System.ServiceProcess;
using System.Text;
using System.Configuration;
namespace CassiniDev
{
[RunInstaller(true)]
public sealed class MyServiceInstallerProcess : ServiceProcessInstaller
{
public MyServiceInstallerProcess()
{
this.Account = ServiceAccount.NetworkService;
}
}
[RunInstaller(true)]
public sealed class MyServiceInstaller : ServiceInstaller
{
public MyServiceInstaller()
{
this.Description = "CassiniDev";
this.DisplayName = "CassiniDev";
this.ServiceName = "CassiniDev";
this.StartType = System.ServiceProcess.ServiceStartMode.Automatic;
}
}
}