SolutionConfiguration

A solution configuration.

Example

app = cf.GetApplication()
project = app:NewProject()

    -- Add new standard configuration
    
standardConfiguration = project.SolutionConfigurations:AddStandardConfiguration()

    -- Move the new standard configuration above the default standard configuration
    
standardConfiguration:MoveUp()

Inheritance

The following objects are derived (specialisations) from the SolutionConfiguration object:

Property List

Included
Specifies whether the solution configuration must be included or excluded. (Read/Write boolean)
Label
The object label. (Read/Write string)

Method List

Delete ()
Delete the solution configuration.
Duplicate ()
Duplicates the solution configuration. (Returns a SolutionConfiguration object.)
MoveDown ()
Move the solution configuration down. (Returns a boolean object.)
MoveUp ()
Move the solution configuration up. (Returns a boolean object.)

Property Details

Included
Specifies whether the solution configuration must be included or excluded.
Type
boolean
Access
Read/Write
Label
The object label.
Type
string
Access
Read/Write

Method Details

Delete ()
Delete the solution configuration.
Duplicate ()
Duplicates the solution configuration.
Return
SolutionConfiguration
The duplicated solution configuration.
MoveDown ()
Move the solution configuration down.
Return
boolean
True if the move was successful.
MoveUp ()
Move the solution configuration up.
Return
boolean
True if the move was successful.