Reputation: 5805
How to stop at the first assert failed in Visual Studio?
When I debug, for each assert that fails I get pop-up windows one on top of the other. But I don't want that behaviour, I need the program to stop at the first failed assert, so that I can debug from there.
Thanks
Upvotes: 9
Views: 12594
Reputation: 24021
VS 2015: Menu->Debug->Windows->Exception Settings
Pre-VS 2015: Debug > Exceptions, expand Win32 Exceptions, and check Assert Failed:
Upvotes: 10