-
Notifications
You must be signed in to change notification settings - Fork 11
Debugging DMZ In Visual Studio
Scott Shillcock edited this page Aug 27, 2010
·
1 revision
There are two methods for running DMZ in the Visual Studio debugger.
- Bring up the Windows Task Manager.
- Select the Processes tab.
- Right click on the process to debug.
- Select the debug options from the context menu.
Most DMZ shell scripts will launch in the debugger if the environment variable DMZ_DEBUG is set to "true".
To set an environment variable in Bash running in Cygwin:
% export DMZ_DEBUG=true
To unset the variable:
% unset DMZ_DEBUG
To run an executable in the Visual Studio debugger from the command line run:
C:\Executable\Location> devenv.exe /debugexe Test.exe [parameters passed to Test.exe]