Summary
Instructs the compiler to set the Subsystem value in the PE
header.
- Assembly
- NAnt
.DotNet .dll - Namespace
- NAnt
.DotNet .Tasks - Containing Type
- IlasmTask
Syntax
[TaskAttribute("subsystem")]
[Int32Validator()]
public int Subsystem { get; set; }
Remarks
Corresponds to the /SUBSYSTEM
flag.
Attributes
Type | Description |
---|---|
Task |
Indicates that property should be treated as a XML attribute for the task. |
Int32 |
Indicates that property should be able to be converted into a int
within the given range.
|
Value
Type | Description |
---|---|
int |
An int that represents the Subsystem
value to set in the PE header. The most frequently value are 3
(console application) and 2 (GUI application).
|