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
storePropertyStore
Properties
Arguments
The command-line arguments passed to the compiler when the build event is executed.
public string Arguments { get; set; }
Property Value
Name
The name of the build profile.
public string Name { get; set; }
Property Value
PostBuildEvents
An array of post-build events.
public BuildEvent[] PostBuildEvents { get; set; }
Property Value
PreBuildEvents
An array of pre-build events.
public BuildEvent[] PreBuildEvents { get; set; }
Property Value
Settings
Compiler configuration properties to specify for the build.
public DassieConfig Settings { get; set; }