Table of Contents

Class BuildProfile

Namespace
Dassie.Configuration
Assembly
dc.dll

Represents a build profile.

[Serializable]
public class BuildProfile : ConfigObject
Inheritance
BuildProfile
Inherited Members
Extension Methods

Constructors

BuildProfile(PropertyStore)

Initializes a new instance of the ConfigObject type backed by the specified PropertyStore.

public BuildProfile(PropertyStore store)

Parameters

store PropertyStore

Properties

Arguments

The command-line arguments passed to the compiler when the build event is executed.

public string Arguments { get; set; }

Property Value

string

Name

The name of the build profile.

public string Name { get; set; }

Property Value

string

PostBuildEvents

An array of post-build events.

public BuildEvent[] PostBuildEvents { get; set; }

Property Value

BuildEvent[]

PreBuildEvents

An array of pre-build events.

public BuildEvent[] PreBuildEvents { get; set; }

Property Value

BuildEvent[]

Settings

Compiler configuration properties to specify for the build.

public DassieConfig Settings { get; set; }

Property Value

DassieConfig