removed NzbDrone.Console dependency to UI components

This commit is contained in:
kay.one 2013-08-06 22:32:22 -07:00
commit 7ac6d9c1f4
42 changed files with 605 additions and 246 deletions

View file

@ -0,0 +1,22 @@
using System;
namespace NzbDrone.Console
{
public static class ConsoleApp
{
public static void Main(string[] args)
{
try
{
Host.Bootstrap.Start(args);
}
catch (Exception e)
{
System.Console.WriteLine(e.ToString());
}
System.Console.WriteLine("Press enter to exit...");
System.Console.ReadLine();
}
}
}