Lidarr/NzbDrone.Console/ConsoleApp.cs

23 lines
531 B
C#
Raw Normal View History

2013-03-01 00:50:50 +00:00
using System;
using NzbDrone.Common.EnvironmentInfo;
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
{
Host.Bootstrap.Start(new StartupArguments(args));
2013-03-01 00:50:50 +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();
}
}
}