VCConfiguration.Platform 属性

获取要为其生成此配置的平台。

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

语法

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

属性值

类型:System.Object
一个对象,该对象用于标识要为其生成配置的平台。

示例

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

下面的代码示例在集成开发环境 (ide) 中获取 VCConfiguration 对象的 Platform 属性 (IDE):

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

Public Module Module1
    Sub Test()
        Dim MyString As String
        Dim prj As VCProject
        Dim cfgs As IVCCollection
        Dim cfg As VCConfiguration
        prj = DTE.Solution.Projects.Item(1).Object
        cfgs = prj.Configurations
        cfg = cfgs.Item(1)
        MyString = cfg.Platform.Name
    End Sub
End Module

.NET Framework 安全性

请参见

参考

VCConfiguration 接口

Microsoft.VisualStudio.VCProjectEngine 命名空间