SolutionBuild.SolutionConfigurations Свойство
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
Возвращает коллекцию объектов SolutionConfiguration.
public:
property EnvDTE::SolutionConfigurations ^ SolutionConfigurations { EnvDTE::SolutionConfigurations ^ get(); };
[System.Runtime.InteropServices.DispId(13)]
public EnvDTE.SolutionConfigurations SolutionConfigurations { [System.Runtime.InteropServices.DispId(13)] get; }
[<System.Runtime.InteropServices.DispId(13)>]
[<get: System.Runtime.InteropServices.DispId(13)>]
member this.SolutionConfigurations : EnvDTE.SolutionConfigurations
Public ReadOnly Property SolutionConfigurations As SolutionConfigurations
Значение свойства
Коллекция SolutionConfigurations.
- Атрибуты
Примеры
Sub SolutionBuildExample()
' Build the solution configuration.
Dim sb As SolutionBuild = DTE.Solution.SolutionBuild
sb.SolutionConfigurations.Item("MyConfig").Activate
sb.Build
End Sub