Table of Contents

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

store PropertyStore

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

List<XmlElement>

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

bool

Name

The name of the build event.

public string Name { get; set; }

Property Value

string