TargetSkipReason 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.
A reason why a target was skipped.
public enum class TargetSkipReason
public enum TargetSkipReason
type TargetSkipReason =
Public Enum TargetSkipReason
- Inheritance
-
TargetSkipReason
Fields
Name | Value | Description |
---|---|---|
None | 0 | The target was not skipped or the skip reason was unknown. |
PreviouslyBuiltSuccessfully | 1 | The target previously built successfully. |
PreviouslyBuiltUnsuccessfully | 2 | The target previously built unsuccessfully. |
OutputsUpToDate | 3 | All the target outputs were up-to-date with respect to their inputs. |
ConditionWasFalse | 4 | The condition on the target was evaluated as false. |