You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
using System;
|
|
|
|
|
using System.Windows.Forms;
|
|
|
|
|
using NLog;
|
|
|
|
|
using NzbDrone.Common.EnvironmentInfo;
|
|
|
|
|
using NzbDrone.Common.Instrumentation;
|
|
|
|
|
using NzbDrone.Host;
|
|
|
|
|
using NzbDrone.SysTray;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone
|
|
|
|
|
{
|
|
|
|
|
public static class WindowsApp
|
|
|
|
|
{
|
|
|
|
|
private static readonly Logger Logger = NzbDroneLogger.GetLogger();
|
|
|
|
|
|
|
|
|
|
public static void Main(string[] args)
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
var startupArgs = new StartupContext(args);
|
|
|
|
|
|
|
|
|
|
LogTargets.Register(startupArgs, false, true);
|
|
|
|
|
|
|
|
|
|
Bootstrap.Start(startupArgs, new MessageBoxUserAlert(), container =>
|
|
|
|
|
{
|
|
|
|
|
container.Register<ISystemTrayApp, SystemTrayApp>();
|
|
|
|
|
var trayApp = container.Resolve<ISystemTrayApp>();
|
|
|
|
|
trayApp.Start();
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
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!");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|