mirror of https://github.com/lidarr/Lidarr
17 lines
309 B
C#
17 lines
309 B
C#
|
using System.Linq;
|
|||
|
using System;
|
|||
|
using InstallService;
|
|||
|
|
|||
|
namespace ServiceInstall
|
|||
|
{
|
|||
|
public static class Program
|
|||
|
{
|
|||
|
static void Main()
|
|||
|
{
|
|||
|
ServiceHelper.Run(@"/i");
|
|||
|
Console.WriteLine("Press any key to continue");
|
|||
|
Console.ReadLine();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|