using System; using System.Diagnostics; using System.Threading; using Exceptioneer.WindowsFormsClient; using NLog; namespace NzbDrone { internal static class Program { private static readonly Logger Logger = LogManager.GetLogger("Application"); private static void Main() { Logger.Info(Process.GetCurrentProcess().Id); try { Thread.CurrentThread.Name = "Host"; AppDomain.CurrentDomain.UnhandledException += ((s, e) => AppDomainException(e)); AppDomain.CurrentDomain.ProcessExit += ProgramExited; AppDomain.CurrentDomain.DomainUnload += ProgramExited; Process.GetCurrentProcess().Exited += ProgramExited; Config.ConfigureNlog(); Logger.Info("Starting NZBDrone. Start-up Path:'{0}'", Config.ProjectRoot); IISController.KillOrphaned(); IISController.StartIIS(); Process.Start(IISController.AppUrl); #if DEBUG //Manually Attach debugger to IISExpress if (Debugger.IsAttached) { try { ProcessAttacher.Attach(); } catch (Exception e) { Logger.Warn("Unable to attach to debugger", e); } } #endif } catch (Exception e) { AppDomainException(e); } Console.Write("Press Enter At Any Time To Exit..."); Console.ReadLine(); IISController.StopIIS(); } private static void AppDomainException(object excepion) { Console.WriteLine("EPIC FAIL: {0}", excepion); Logger.Fatal("EPIC FAIL: {0}", excepion); new Client { ApiKey = "43BBF60A-EB2A-4C1C-B09E-422ADF637265", ApplicationName = "NZBDrone", CurrentException = excepion as Exception }.Submit(); IISController.StopIIS(); } private static void ProgramExited(object sender, EventArgs e) { IISController.StopIIS(); } } }