Radarr/NzbDrone/AppMain.cs

69 lines
2.3 KiB
C#
Raw Normal View History

using System;
using System.Diagnostics;
using System.Reflection;
2013-03-01 00:50:50 +00:00
using NLog;
namespace NzbDrone
{
public static class AppMain
{
2013-03-01 00:50:50 +00:00
private static readonly Logger logger = LogManager.GetLogger("AppMain");
public static void Main(string[] args)
{
try
{
2013-03-01 00:50:50 +00:00
logger.Info("Starting NzbDrone Console. Version {0}", Assembly.GetExecutingAssembly().GetName().Version);
AppDomain.CurrentDomain.UnhandledException += ((s, e) => AppDomainException(e.ExceptionObject as Exception));
//Check if full version .NET is installed.
try
{
2012-01-09 22:10:44 +00:00
Assembly.Load("System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a");
}
2012-01-09 22:10:44 +00:00
catch (Exception)
{
2013-03-01 00:50:50 +00:00
logger.Error("It looks like you don't have full version of .NET Framework installed. Press any key and you will be directed to the download page.");
Console.Read();
try
{
Process.Start("http://www.microsoft.com/download/en/details.aspx?id=17851");
}
2013-03-01 00:50:50 +00:00
catch (Exception e)
{
2013-03-01 00:50:50 +00:00
logger.Warn("Oops. can't start default browser. Please visit http://www.microsoft.com/download/en/details.aspx?id=17851 to download .NET Framework 4.");
Console.ReadLine();
}
2013-03-01 00:50:50 +00:00
return;
}
2013-04-20 00:05:48 +00:00
var container = MainAppContainerBuilder.BuildContainer();
/*try
2013-05-20 00:30:02 +00:00
{
container.Resolve<IUpdateService>().Execute(new ApplicationUpdateCommand());
}
catch (Exception e)
{
logger.ErrorException("Application update failed.", e);
}
*/
2013-04-19 01:47:54 +00:00
container.Resolve<Router>().Route(args);
}
catch (Exception e)
{
2013-03-01 00:50:50 +00:00
AppDomainException(e);
}
}
2013-03-01 00:50:50 +00:00
public static void AppDomainException(Exception exception)
{
Console.WriteLine("EPIC FAIL: {0}", exception);
logger.FatalException("EPIC FAIL: " + exception.Message, exception);
}
}
}