Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

visual studio delete all breakpoints in a file

I want to delete all breakpoints in a specific file (customerController.cs). Is there an easy way to do this?

I don't want to delete all breakpoints within a project or a solution.

like image 541
emert117 Avatar asked Feb 05 '19 14:02

emert117


People also ask

How do I remove all breakpoints in Visual Studio?

To clear all breakpoints in the applicationFrom the Debug menu, choose Clear All Breakpoints (CTRL+SHIFT+F9).

Which command removes all breakpoints?

The bc command permanently removes previously set breakpoints from the system.

How do you find all breakpoints in VS code?

In the Breakpoints window, you can search, sort, filter, enable/disable, or delete breakpoints. You can also set conditions and actions, or add a new function or data breakpoint. To open the Breakpoints window, select Debug > Windows > Breakpoints, or press Ctrl+Alt+B.


1 Answers

  • Open Breakpoints window (CTRL+ALT+B)
  • Add File columns in Show Columns (optional)
  • Search by file name
  • Select all and delete

n.b. Talking about VS2017

like image 169
Johnny Avatar answered Sep 29 '22 12:09

Johnny