Radarr/src/NzbDrone/WindowsApp.cs

47 lines
1.4 KiB
C#
Raw Normal View History

using System;
using System.Windows.Forms;
2013-08-30 22:55:01 +00:00
using NLog;
using NzbDrone.Common.EnvironmentInfo;
2013-08-31 01:42:30 +00:00
using NzbDrone.Common.Instrumentation;
using NzbDrone.Host;
using NzbDrone.SysTray;
namespace NzbDrone
{
public static class WindowsApp
{
2013-11-26 02:46:12 +00:00
private static readonly Logger Logger = NzbDroneLogger.GetLogger();
2013-08-30 22:55:01 +00:00
public static void Main(string[] args)
{
try
{
2013-08-31 01:42:30 +00:00
var startupArgs = new StartupArguments(args);
LogTargets.Register(startupArgs, false, true);
2013-11-26 02:46:12 +00:00
var bootstrap = new Bootstrap(startupArgs, new MessageBoxUserAlert());
bootstrap.EnsureSingleInstance();
bootstrap.Start();
bootstrap.Container.Register<ISystemTrayApp, SystemTrayApp>();
bootstrap.Container.Resolve<ISystemTrayApp>().Start();
}
2013-11-26 02:46:12 +00:00
catch (TerminateApplicationException e)
{
2013-11-26 02:46:12 +00:00
Logger.Info("Application has been terminated. Reason " + e.Reason);
}
catch (Exception e)
{
Logger.FatalException("EPIC FAIL: " + e.Message, e);
var message = string.Format("{0}: {1}", e.GetType().Name, e.Message);
MessageBox.Show(text: message, buttons: MessageBoxButtons.OK, icon: MessageBoxIcon.Error, caption: "Epic Fail!");
}
}
2013-11-26 02:46:12 +00:00
}
2013-08-31 01:42:30 +00:00
}