https://github.com/abukres/autobreakpointadder
This Visual Commander command adds a breakpoint to every method in every .cs file in a project in Visual Studio
https://github.com/abukres/autobreakpointadder
automation breakpoint breakpoints visual-commander visual-studio visual-studio-extension
Last synced: 3 months ago
JSON representation
This Visual Commander command adds a breakpoint to every method in every .cs file in a project in Visual Studio
- Host: GitHub
- URL: https://github.com/abukres/autobreakpointadder
- Owner: abukres
- License: mit
- Created: 2024-09-08T18:24:35.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-09-08T18:47:49.000Z (almost 2 years ago)
- Last Synced: 2025-02-25T05:19:18.698Z (over 1 year ago)
- Topics: automation, breakpoint, breakpoints, visual-commander, visual-studio, visual-studio-extension
- Homepage:
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# AutoBreakpointAdder
This Visual Commander command adds a breakpoint to every method in every .cs file in the selected project in VS Solution Explorer.
Visual Commander is a Visual Studio extension to automate tasks in Visual Studio.
##### How to use:
* Download and install the extension from https://vlasovstudio.com/products.html. Note that there are free and pro versions. The extension is also available in the [Visual Studio Marketplace](https://marketplace.visualstudio.com/items?itemName=SergeyVlasov.VisualCommander).
* In Visual Studio select the Extensions menu -> VCmd - > Commands and click on the Add button.
* Select C# 4.0 as the language and copy and paste the command code from this repo.
* Give the command a descriptive name. Ex: Add breakpoint to every cs file.
* A keyboard shortcut can be assigned to the command. Go to Tools -> Options -> Keyboard and assign the shortcut to the proper VCmd.Commandxx.
##### Why do I find creating a breakpoint everywhere useful:
An example where I need to create a breakpoint everywhere is when for example I have an api running and waiting for requests and I do not want to spend time to find out what method is the entry point for some request. I hit the shortcut, send the request, a breakpoint is hit and I know quickly what api method was called. Then I remove all the breakpoints. It's a time saver.
Many thanks to Sergey Vlasov for creating some cool Visual Studio extensions.