I remember it used to do this before.
Now it’s only a silent print into the output window informing that an exception is thrown.
I know when it can’t find the code, it can do this but when I investigate it, the problem code is mine so it should bring me into the offending line immediately at runtime.
Am I missing something?
By default that behaviour only happens if the exception is unhandled. You might have an exception handler somewhere that is quietly handling the exception. Note that certain kinds of projects — like WinForms, for example — might insert global exception handlers for you, and possibly those are handling the exception.
In the Debug – Exceptions dialog you can say to break in the debugger when the exception is thrown, regardless of whether it is handled or not.