I am trying to attach a unhandled exception handler for .NET excel addin. The problem is the exception handler is never called.
AppDomain.CurrentDomain.UnhandledException doesn't work - never fires the event.
Application.Current.DispatcherUnhandledException can't be used as Application is null in the excel addin code.
how do you wire an unhandled exception handler then?