1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2024-12-26 01:27:00 +00:00
Lidarr/ServiceHelpers/ServiceInstall/Program.cs

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();
}
}
}