You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
405 B
18 lines
405 B
using System.ServiceProcess;
|
|
using Ninject;
|
|
|
|
namespace NzbDrone
|
|
{
|
|
internal class NzbDroneService : ServiceBase
|
|
{
|
|
protected override void OnStart(string[] args)
|
|
{
|
|
CentralDispatch.Kernel.Get<ApplicationServer>().Start();
|
|
}
|
|
|
|
protected override void OnStop()
|
|
{
|
|
CentralDispatch.Kernel.Get<ApplicationServer>().Stop();
|
|
}
|
|
}
|
|
} |