mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 00:12:30 +01:00
39 lines
1.2 KiB
C#
39 lines
1.2 KiB
C#
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 StartupArguments(args);
|
|
|
|
LogTargets.Register(startupArgs, false, true);
|
|
|
|
var container = Bootstrap.Start(startupArgs, new MessageBoxUserAlert());
|
|
container.Register<ISystemTrayApp, SystemTrayApp>();
|
|
container.Resolve<ISystemTrayApp>().Start();
|
|
}
|
|
catch (TerminateApplicationException)
|
|
{
|
|
}
|
|
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!");
|
|
}
|
|
}
|
|
}
|
|
}
|