Radarr/NzbDrone/AppMain.cs

60 lines
1.9 KiB
C#
Raw Normal View History

using System;
using System.Diagnostics;
using System.Reflection;
2013-03-01 00:50:50 +00:00
using NLog;
2013-05-24 03:23:59 +00:00
using NzbDrone.Common.Instrumentation;
using NzbDrone.Common.Security;
2013-06-28 01:03:04 +00:00
using NzbDrone.Core.Datastore;
namespace NzbDrone
{
public static class AppMain
{
2013-06-28 01:03:04 +00:00
private static readonly Logger Logger = LogManager.GetLogger("AppMain");
2013-03-01 00:50:50 +00:00
public static void Main(string[] args)
{
try
{
2013-06-07 19:00:48 +00:00
GlobalExceptionHandlers.Register();
IgnoreCertErrorPolicy.Register();
2013-06-07 19:00:48 +00:00
2013-06-28 01:03:04 +00:00
Logger.Info("Starting NzbDrone Console. Version {0}", Assembly.GetExecutingAssembly().GetName().Version);
2013-03-01 00:50:50 +00:00
//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-06-28 01:03:04 +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-06-28 01:03:04 +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;
}
var container = MainAppContainerBuilder.BuildContainer(args);
2013-06-28 01:03:04 +00:00
DbFactory.RegisterDatabase(container);
container.Resolve<Router>().Route();
}
catch (Exception e)
{
2013-06-28 01:03:04 +00:00
Logger.FatalException("Epic Fail " + e.Message, e);
}
}
2013-03-01 00:50:50 +00:00
}
}