mirror of
https://github.com/lidarr/Lidarr
synced 2024-12-26 01:27:00 +00:00
16 lines
309 B
C#
16 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();
|
|
}
|
|
}
|
|
}
|