mirror of
https://github.com/Sonarr/Sonarr.git
synced 2025-01-25 11:13:39 +02:00
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();
|
|
}
|
|
}
|
|
}
|