OK, I've gotten the project to build. Now, how do I debug and step through? #5231
-
I'm not even sure which project I should attempt to launch. There are eight choices for projects in the debug launch dropdown for this solution, but If I modify the debug start options on the project's property page, it does perform the usual functions one would expect when doing a So, the project is getting launched, but no breakpoints are being respected. The program launches, and I see Visual Studio alter which panels are displayed to show the watch window and call stack, but the command window just shows the usual behavior one sees when executing a What do I do to set breakpoints and step through the program? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Beta Was this translation helpful? Give feedback.
That would be the
AppInstallerCLIPackage
In the command-line arguments, add
--wait
at the end of any command that you executeThe compiled code is also available to you via a
wingetdev
command in your normal terminal session if you click onDeploy Solution
. Any time you rebuild and deploy, the updated changes would be available via thewingetdev
commandThe starting point of the program is in
src/AppInstallerCLI/main.cpp