I manually migrated a Visual Studio 2012 "website" to a "ASP web project" to be able to use environment-specific web.configs (using transformation).
After migration my debugger does not stop anymore at exceptions.
In my output view I can see that a NullReferenceException is raised, my HTTP-REST-client receives "400 bad request", but the debugger ignores that exception.
I followed the instructions to enable exceptions ( How do I allow breaking on 'System.NullReferenceException' in VS2010? ). In the dialog "debugging"=>"Exceptions..." NullReferenceExceptions are enabled and resetting all checkboxes does also not help.
Breakpoints are working as expected.
The compiler also has some strange behaviour: compilation will succeed even if the code contains syntax problems. (But this might be a separate issue)
How can I reenable the debugger?