Radarr/src/NzbDrone/WindowsApp.cs

44 lines
1.4 KiB
C#
Raw Normal View History

using System;
using System.Windows.Forms;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;
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;
2022-11-20 21:08:26 +00:00
using NzbDrone.Host;
using NzbDrone.SysTray;
namespace NzbDrone
{
public static class WindowsApp
{
2014-12-17 07:12:26 +00:00
private static readonly Logger Logger = NzbDroneLogger.GetLogger(typeof(WindowsApp));
2013-08-30 22:55:01 +00:00
public static void Main(string[] args)
{
2021-11-22 21:14:28 +00:00
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.SetHighDpiMode(HighDpiMode.SystemAware);
try
{
2013-11-26 06:53:36 +00:00
var startupArgs = new StartupContext(args);
2013-08-31 01:42:30 +00:00
2014-12-17 07:12:26 +00:00
NzbDroneLogger.Register(startupArgs, false, true);
2013-08-31 01:42:30 +00:00
2021-11-22 21:14:28 +00:00
Bootstrap.Start(args, e => { e.ConfigureServices((_, s) => s.AddSingleton<IHostedService, SystemTrayApp>()); });
}
catch (Exception e)
{
2016-02-11 21:13:42 +00:00
Logger.Fatal(e, "EPIC FAIL: " + e.Message);
2021-11-22 21:14:28 +00:00
var message = string.Format("{0}: {1}", e.GetType().Name, e.ToString());
if (RuntimeInfo.IsUserInteractive)
{
MessageBox.Show($"{e.GetType().Name}: {e.Message}", buttons: MessageBoxButtons.OK, icon: MessageBoxIcon.Error, caption: "Epic Fail!");
}
}
}
}
2013-08-31 01:42:30 +00:00
}