Class BuildEvent
- Namespace
- Dassie.Configuration
- Assembly
- dc.dll
Represents a build event.
[Serializable]
public class BuildEvent : ConfigObject
- Inheritance
-
BuildEvent
- Inherited Members
- Extension Methods
Constructors
BuildEvent(PropertyStore)
Initializes a new instance of the ConfigObject type backed by the specified PropertyStore.
public BuildEvent(PropertyStore store)
Parameters
storePropertyStore
Properties
CommandNodes
A list of XML elements representing the actions to execute as part of the build event.
public List<XmlElement> CommandNodes { get; set; }
Property Value
Critical
Specifies wheter or not the build event is critical. A critical build event will cause a build process to terminate immediately in case of failure.
public bool Critical { get; set; }
Property Value
Name
The name of the build event.
public string Name { get; set; }