add onova and debug

This commit is contained in:
Jakob 2021-09-06 22:26:41 +02:00
parent c2b42d40db
commit e41b348acb
14 changed files with 114 additions and 15 deletions

View file

@ -2,6 +2,7 @@
using System.Collections.Generic;
using System.Configuration;
using System.Data;
using System.Diagnostics;
using System.Linq;
using System.Threading.Tasks;
using System.Windows;
@ -13,5 +14,10 @@ namespace EnvyUpdate
/// </summary>
public partial class App : Application
{
public bool DoHandle { get; set; }
private void Application_DispatcherUnhandledException(object sender, System.Windows.Threading.DispatcherUnhandledExceptionEventArgs e)
{
MessageBox.Show(e.Exception.ToString());
}
}
}