NAnt Help Type Reference <warnaserror> | v0.90 |
Controls the behaviour of a compiler with regards to the reporting of warnings.
Attribute | Type | Description | Required |
---|---|---|---|
id | string | The ID used to be referenced later. | False |
refid | string | The ID to use as the reference. | False |
warnaserror
attribute. Only supported when targeting .NET 2.0 or higher. Represents a compiler warning.
Attribute | Type | Description | Required |
---|---|---|---|
number | string | A warning number, or comma-separated list of warnings, that you want the compiler to suppress or report. | True |
if | bool | If true then the element will be processed; otherwise, skipped. The default is true. | False |
unless | bool | If true then the element will be skipped; otherwise, processed. The default is false. | False |
warnaserror
is true. Only supported when targeting .NET 2.0 or higher. Represents a compiler warning.
Attribute | Type | Description | Required |
---|---|---|---|
number | string | A warning number, or comma-separated list of warnings, that you want the compiler to suppress or report. | True |
if | bool | If true then the element will be processed; otherwise, skipped. The default is true. | False |
unless | bool | If true then the element will be skipped; otherwise, processed. The default is false. | False |
Instruct a compiler to report warning 0519 as an error.
<warnaserror> <include number="0519" /> </warnaserror>
Instruct a compiler not to report warning 0519 as an error, if the release
property is true.
<warnaserror> <exclude number="0519" if="${release}" /> </warnaserror>