OpenSimMirror/ServiceManager/ServiceManager.cs

32 lines
543 B
C#
Raw Normal View History

2007-05-13 21:01:21 +00:00
using System;
using System.Threading;
using System.ServiceProcess;
public class OpenGridMasterService : System.ServiceProcess.ServiceBase {
private Thread ServiceWorkerThread;
public OpenGridMasterService()
{
CanPauseAndContinue = false;
ServiceName = "OpenGridServices-master";
}
private void InitializeComponent()
{
this.CanPauseAndContinue = false;
this.CanShutdown = true;
this.ServiceName = "OpenGridServices-master";
}
protected override void OnStart(string[] args)
{
}
public static void Main()
{
}
}