VCProject.Configurations 属性

获取项目的配置集合。

命名空间:  Microsoft.VisualStudio.VCProjectEngine
程序集:  Microsoft.VisualStudio.VCProjectEngine(在 Microsoft.VisualStudio.VCProjectEngine.dll 中)

语法

声明
ReadOnly Property Configurations As Object
Object Configurations { get; }
property Object^ Configurations {
    Object^ get ();
}
abstract Configurations : Object with get
function get Configurations () : Object

属性值

类型:System.Object
配置的集合。

备注

请参见 AddConfiguration

示例

有关如何编译和运行此示例的信息,请参见 如何:编译项目模型扩展性示例代码

下面的示例在集成开发环境 (ide) 使用 Configurations 属性 (IDE):

' add reference to Microsoft.VisualStudio.VCProjectEngine
Imports EnvDTE
Imports Microsoft.VisualStudio.VCProjectEngine

Public Module Module1
    Sub Test()
        Dim idx As Integer
        Dim prj As VCProject
        Dim mycollection As IVCCollection
        Dim cfg As VCConfiguration
        prj = DTE.Solution.Projects.Item(1).Object
        mycollection = prj.Configurations
        MsgBox(mycollection.Count)
        For idx = 1 To mycollection.Count
            cfg = mycollection.Item(idx)
            MsgBox(cfg.Name)
        Next
    End Sub
End Module

.NET Framework 安全性

请参见

参考

VCProject 接口

Microsoft.VisualStudio.VCProjectEngine 命名空间