The "Ignore" dialog is disabled in Visual Studio.

I am coding in C ++ using Visual Studio 2015 Professional Update 3.

My problem: When assert () was fired, the confirmation dialog did not appear anymore! Instead, a description dialog box opens.

It looks like all assertions will be handled as exceptions.

I reinstalled the entire Visual Studio 2015 development environment, disabled all extensions, reset settings, etc. But it seems like there is one parameter in the registry that changed the behavior of the assertion.

How do I get a confirmation dialog back?

+3


source to share


1 answer


Replace the following ucrtbased.dll with version 10.0.10240



C:\Windows\SysWOW64\ucrtbased.dll  //32bit 10.0.14393 (not ok)

C:\Windows\System32\ucrtbased.dll  //64bit 10.0.14393 (not ok)

      

+3


source







All Articles