natemcmaster / DotNetCorePlugins

.NET Core library for dynamically loading code

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

[Question] Capturing exceptions

clibequilibrium opened this issue · comments

Hello,

I am using this repository excessively with hot reloaded plugins but was wondering how can I capture exceptions and make my debugger stop on something as simple as throw new System.NotImplementedException(); , currently the debugger would just log something like

Exception thrown: 'System.NotImplementedException' in engine
Exception thrown: 'System.NotImplementedException' in System.Private.CoreLib.dll

But I wish the debugger would stop on that breakpoint. Has anyone experienced same problem ?

Thanks !