1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-19 07:52:33 +02:00
Radarr/NzbDrone.Common/ConsoleProvider.cs

38 lines
1.3 KiB
C#
Raw Normal View History

2011-10-07 05:37:41 +02:00
using System;
using System.Diagnostics;
using System.Threading;
2011-10-07 05:37:41 +02:00
namespace NzbDrone.Common
2011-10-07 05:37:41 +02:00
{
public class ConsoleProvider
{
public virtual void WaitForClose()
{
while (true)
{
2011-10-13 04:24:30 +02:00
Console.ReadLine();
Thread.Sleep(250);
2011-10-07 05:37:41 +02:00
}
}
public virtual void PrintHelp()
{
Console.WriteLine();
Console.WriteLine(" Usage: {0} <command> ", Process.GetCurrentProcess().MainModule.ModuleName);
Console.WriteLine(" Commands:");
Console.WriteLine(" /i Install the application as a Windows Service ({0}).", ServiceProvider.NZBDRONE_SERVICE_NAME);
Console.WriteLine(" /u Uninstall already installed Windows Service ({0}).", ServiceProvider.NZBDRONE_SERVICE_NAME);
Console.WriteLine(" <No Arguments> Run application in console mode.");
}
public virtual void PrintServiceAlreadyExist()
{
Console.WriteLine("A service with the same name ({0}) already exists. Aborting installation", ServiceProvider.NZBDRONE_SERVICE_NAME);
}
public virtual void PrintServiceDoestExist()
{
Console.WriteLine("Can't find service ({0})", ServiceProvider.NZBDRONE_SERVICE_NAME);
}
2011-10-07 05:37:41 +02:00
}
2011-10-07 08:57:43 +02:00
}