SolutionConfiguration Class
Namespace: Stride.Core.AssetsAssembly: Stride.Core.Assets.dll
A solution configuration used by SolutionPlatform
[DataContract("SolutionConfiguration")]
public class SolutionConfiguration
Name | Description | |
---|---|---|
Constructors | ||
SolutionConfiguration(String) | Initializes a new instance of the SolutionConfiguration class. |
|
Properties | ||
IsDebug | Gets or sets a value indicating whether this instance is a debug configuration. |
|
Name | Gets or sets the configuration name (e.g. Debug, Release) |
|
Properties | Gets the additional msbuild properties for a specific configuration (Debug or Release) |
Constructors
SolutionConfiguration(String)
Initializes a new instance of the SolutionConfiguration class.
public SolutionConfiguration(string name)
Parameters
Type | Name | Description |
---|---|---|
System.String | name |
Properties
IsDebug
Gets or sets a value indicating whether this instance is a debug configuration.
public bool IsDebug { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
Name
Gets or sets the configuration name (e.g. Debug, Release)
public string Name { get; }
Property Value
Type | Description |
---|---|
System.String | The name. |
Properties
Gets the additional msbuild properties for a specific configuration (Debug or Release)
public List<string> Properties { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<System.String> | The msbuild configuration properties. |