Radarr/NzbDrone.Console/ConsoleApp.cs

31 lines
658 B
C#
Raw Normal View History

2013-03-01 00:50:50 +00:00
using System;
2013-08-20 22:48:10 +00:00
using System.Threading;
2013-08-30 22:55:01 +00:00
using NLog;
using NzbDrone.Common.EnvironmentInfo;
using NzbDrone.Host;
2013-03-01 00:50:50 +00:00
namespace NzbDrone.Console
{
public static class ConsoleApp
2013-03-01 00:50:50 +00:00
{
public static void Main(string[] args)
{
try
{
Bootstrap.Start(new StartupArguments(args), new ConsoleAlerts());
}
catch (TerminateApplicationException)
{
2013-03-01 00:50:50 +00:00
}
catch (Exception e)
2013-03-01 00:50:50 +00:00
{
2013-08-20 22:48:10 +00:00
System.Console.ReadLine();
2013-03-01 00:50:50 +00:00
}
2013-08-20 22:48:10 +00:00
while (true)
{
2013-08-20 22:48:10 +00:00
Thread.Sleep(10 * 60);
}
2013-03-01 00:50:50 +00:00
}
}
}