1

For example, I am debugging a project that contains several source files where I already have breakpoints. During debugging I once disabled all the breakpoints from debug menu (Debug -> Disable All Breakpoints).

But now I want to enable the breakpoints only of a particular source file which I want to debug. In Visual Studio (2013), how to do that?

dymanoid
  • 14,771
  • 4
  • 36
  • 64
theburningfire
  • 481
  • 1
  • 4
  • 20
  • Possible duplicate of [See all breakpoints in Visual Studio 2010+](https://stackoverflow.com/questions/7781977/see-all-breakpoints-in-visual-studio-2010) – nilsK Sep 25 '18 at 12:33

1 Answers1

5

In the breakpoint window (Debug > Windows > Breakpoints), put your file name in the "Search:" box and select "File" in the "In Column:" drop down.

The Breakpoints window toolbar has a button for "Enable or disable all breakpoints matching the current search criteria"

Crowcoder
  • 11,250
  • 3
  • 36
  • 45