I'm trying to debug an executable (.exe) using Visual-Studio (2019). I opened a new solution and added a command
contains the path of my exe, as describes in here How do I attach Visual Studio to a process that is not started yet?.
Because of I'm interesting at the first instructions it executes, I want to set a data breakpoint /breakpoint in a specific adress that I've found on the disass window .
when running the solution and hitting the 'Break all' option, I could view the disassembly window, and then I've found the location that I want to break at. When I placed there a breakpoint and restarted, it seemed that the breakpoint was marked off.
How can I achieve that?
Here is what I've tryed so far:
Playing around with the Debugger type window (Solution => properties => debugging => Debugging type)
Open a new solutio, and try it there
Any help would be much appreciated!