TypeOfDebugger Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Specifies the debugger type to use.
public enum class TypeOfDebugger
public enum class TypeOfDebugger
enum TypeOfDebugger
public enum TypeOfDebugger
type TypeOfDebugger =
Public Enum TypeOfDebugger
- Inheritance
-
TypeOfDebugger
Fields
Name | Value | Description |
---|---|---|
DbgNativeOnly | 0 | Native Only |
DbgManagedOnly | 1 | Managed Only |
DbgMixed | 2 | Mixed |
DbgAuto | 3 | Auto |
DbgScript | 4 | Script |
Remarks
Used by the DebuggerType property.
When set to Auto, the debugger type is selected based on contents of the .exe file.
See Project Settings for a C++ Debug Configuration for more information.