Summary
Specifies whether or not the compiler should generate debug
information.
- Assembly
- NAnt
.DotNet .dll - Namespace
- NAnt
.DotNet .Tasks - Containing Type
- IlasmTask
Syntax
[TaskAttribute("debug")]
[BooleanValidator()]
public bool Debug { get; set; }
Remarks
Corresponds to the /DEBUG
flag.
Attributes
Type | Description |
---|---|
Task |
Indicates that property should be treated as a XML attribute for the task. |
Boolean |
Used to indicate that a property should be able to be converted into a
bool .
|
Value
Type | Description |
---|---|
bool |
true if debug information should be generated;
otherwise, false . The default is
false .
|