Stride

OPEN / CLOSE
  • Features
  • Blog
  • Documentation
  • Community
(icon) Download

  • Discord
  • Facebook
  • Twitter
  • YouTube

LANGUAGE

OPEN / CLOSE
  • English
  • 日本語
    Show / Hide Table of Contents

    SolutionConfiguration Class

    Namespace: Stride.Core.Assets
    Assembly: Stride.Core.Assets.dll

    A solution configuration used by SolutionPlatform

    System.Object → SolutionConfiguration
    Derived from SolutionConfiguration:

    [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)

    | Improve this Doc View Source

    Constructors


    SolutionConfiguration(String)

    Initializes a new instance of the SolutionConfiguration class.

    public SolutionConfiguration(string name)
    Parameters
    Type Name Description
    System.String name
    | Improve this Doc View Source

    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

    true if this instance is debug; otherwise, false.


    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.


    Extension Methods

    ComponentBaseExtensions.DisposeBy<T>(T, ICollectorHolder)
    ComponentBaseExtensions.RemoveDisposeBy<T>(T, ICollectorHolder)
    • Improve this Doc
    • View Source
    In This Article

    Back to top

    Copyright © 2019-2021 .NET Foundation and Contributors
    Supported by the .NET Foundation