TargetBuiltReason Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
The reason that a target was built by its parent target.
public enum class TargetBuiltReason
public enum TargetBuiltReason
type TargetBuiltReason =
Public Enum TargetBuiltReason
- Inheritance
-
TargetBuiltReason
Fields
Name | Value | Description |
---|---|---|
None | 0 | This wasn't built on because of a parent. |
BeforeTargets | 1 | The target was part of the parent's BeforeTargets list. |
DependsOn | 2 | The target was part of the parent's DependsOn list. |
AfterTargets | 3 | The target was part of the parent's AfterTargets list. |
InitialTargets | 4 | The target was defined as an initial target of the project. |
DefaultTargets | 5 | The target was one of the default targets of the project. |
EntryTargets | 6 | The target was one of the targets explicitly called to be built. |