start padding out history pages. update plugin extension points to use PluginDetails object to identify themselves. implemented last scanned id methods to get last id from real ir daemon code to show on Race Director Page
21 lines
438 B
C#
21 lines
438 B
C#
using System.ServiceProcess;
|
|
|
|
namespace RaceLapTimer
|
|
{
|
|
static class Program
|
|
{
|
|
/// <summary>
|
|
/// The main entry point for the application.
|
|
/// </summary>
|
|
static void Main()
|
|
{
|
|
ServiceBase[] servicesToRun;
|
|
servicesToRun = new ServiceBase[]
|
|
{
|
|
new RaceLapTimer()
|
|
};
|
|
ServiceBase.Run(servicesToRun);
|
|
}
|
|
}
|
|
}
|