DEBUG_LAUNCH_OPERATION Enumeration
Visual Studio 2015
The DEBUG_LAUNCH_OPERATION enumeration is a member of the VsDebugTargetInfo structure, a parameter of LaunchDebugTargets calls.
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
| Member name | Description | |
|---|---|---|
| DLO_AlreadyRunning | Attaches to a process. The bstrExe element of the VsDebugTargetInfo struct is the process name, or a null character followed by a string indicating the hexadecimal process id. | |
| DLO_CreateProcess | Launches the process. The bstrExe element of the VsDebugTargetInfo struct is the full path to the exe, bstrArg are the arguments to pass to CreateProcess, clsidCustom specifies the single debug engine to use (null for default), or dwClsidCount and pclsidList specify the debug engines to use | |
| DLO_Custom | OBSOLETE. Use DLO_CreateProcess. | |
| DLO_LaunchByWebServer | Use special HTTP verb to debug. |
From vsshell.idl:
Show: