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(typeof(WindowsApp));
|
|
|
|
|
|
|
|
|
|
public static void Main(string[] args)
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
var startupArgs = new StartupContext(args);
|
|
|
|
|
|
|
|
|
|
NzbDroneLogger.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.Fatal(e, "EPIC FAIL");
|
|
|
|
|
MessageBox.Show($"{e.GetType().Name}: {e.Message}", buttons: MessageBoxButtons.OK, icon: MessageBoxIcon.Error, caption: "Epic Fail!");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|