Danny
Danny

Reputation: 35

Visual Studio 2010 Dont debug in breakPoints

I'm working on a project and suddenly the debug ignore my breakpoints and doesn't debug,

Upvotes: 0

Views: 2539

Answers (3)

Sicha
Sicha

Reputation: 11

In case you need to "hit" the break point in "RELEASE" mode go to:

Tools -> Options -> Debugging -> General and UN-CHECK "Just my code" option, in order to enable loading symbols and actualy hitting a break point ;)

Upvotes: 1

John Zumbrum
John Zumbrum

Reputation: 2856

Sometimes Visual Studio just gets all confused. I've found restarting Visual Studio, unsetting/resetting breakpoints, and commenting out the places where it's falling over all help to trip Visual Studio into working again.

Upvotes: 0

user623879
user623879

Reputation: 4142

Make sure the dropdown near on the debug toolbar shows "Debug" and not "Release".

Upvotes: 2

Related Questions