Enum ActionModes
- Namespace
- Dassie.Extensions
- Assembly
- dc.dll
Specifies the modes in which an action can be executed.
[Flags]
public enum ActionModes
- Extension Methods
Fields
All = BuildEvent | CustomIndicates that the action can be executed in any mode.
BuildEvent = PreBuildEvent | PostBuildEventIndicates that the action can be executed as part of any build event.
Custom = 4Indicates that the action can be executed outside of build events.
None = 0Indicates that no options are set or that the default value should be used.
PostBuildEvent = 2Indicates that the action can be executed as part of a post-build event.
PreBuildEvent = 1Indicates that the action can be executed as part of a pre-build event.