Summary
The reason that a target was built by its parent target.
- Namespace
- Microsoft
.Build .Framework - Interfaces
-
- IComparable
- IFormattable
- IConvertible
- Base Types
-
- object
- ValueType
- Enum
graph TD
Base0["Enum"]-->Type
Base1["ValueType"]-->Base0
Base2["object"]-->Base1
Interface0["IComparable"]-.->Type
Interface1["IFormattable"]-.->Type
Interface2["IConvertible"]-.->Type
Type["TargetBuiltReason"]
class Type type-node
Syntax
public enum TargetBuiltReason
Fields
| Name | Constant Value | Summary |
|---|---|---|
| AfterTargets | 3 |
The target was part of the parent's AfterTargets list.
static
|
| BeforeTargets | 1 |
The target was part of the parent's BeforeTargets list.
static
|
| DependsOn | 2 |
The target was part of the parent's DependsOn list.
static
|
| None | 0 |
This wasn't built on because of a parent.
static
|