mirror of
https://github.com/Lidarr/Lidarr
synced 2025-12-21 15:53:02 +01:00
16 lines
313 B
C#
16 lines
313 B
C#
using System.Linq;
|
|
using System;
|
|
using UninstallService;
|
|
|
|
namespace ServiceUninstall
|
|
{
|
|
public static class Program
|
|
{
|
|
static void Main()
|
|
{
|
|
ServiceHelper.Run(@"/u");
|
|
Console.WriteLine("Press any key to continue");
|
|
Console.ReadLine();
|
|
}
|
|
}
|
|
}
|