2013-03-01 00:50:50 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Console
|
|
|
|
|
{
|
2013-08-07 05:32:22 +00:00
|
|
|
|
public static class ConsoleApp
|
2013-03-01 00:50:50 +00:00
|
|
|
|
{
|
|
|
|
|
public static void Main(string[] args)
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
2013-08-07 05:32:22 +00:00
|
|
|
|
Host.Bootstrap.Start(args);
|
2013-03-01 00:50:50 +00:00
|
|
|
|
}
|
2013-08-07 05:32:22 +00:00
|
|
|
|
catch (Exception e)
|
2013-03-01 00:50:50 +00:00
|
|
|
|
{
|
|
|
|
|
System.Console.WriteLine(e.ToString());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
System.Console.WriteLine("Press enter to exit...");
|
|
|
|
|
System.Console.ReadLine();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|