DebugOutput Enum

Summary

Specifies the type of debugging information generated by the compiler.
Assembly
NAnt.DotNet.dll
Namespace
NAnt.DotNet.Types
Base Types
  • Enum
graph BT Type-->Base0["Enum"] Type["DebugOutput"] class Type type-node

Syntax

[TypeConverter(typeof(DebugOutputConverter))]
public enum DebugOutput

Remarks

For backward compatibility, the following string values can also be used in build files:

Corresponding field
Value
"true"
"false"

When set to Enabled then the following conditional compilation symbols will also be defined:

  • DEBUG
  • TRACE

Attributes

Type Description
TypeConverterAttribute

Fields

Name Constant Value Summary
Enable 1
Enable attaching a debugger to the running program.
static
Full 2
Enable attaching a debugger to the running program.
static
None 0
Create no debug information.
static
PdbOnly 3
Only display assembler when the running program is attached to the debugger.
static