VCProject.Platforms Property

Gets the platforms for which this project can be built. For Visual C++, this is only Win32.

Namespace:  Microsoft.VisualStudio.VCProjectEngine
Assembly:  Microsoft.VisualStudio.VCProjectEngine (in Microsoft.VisualStudio.VCProjectEngine.dll)

Syntax

'Declaration
ReadOnly Property Platforms As Object
Object Platforms { get; }
property Object^ Platforms {
    Object^ get ();
}
abstract Platforms : Object with get
function get Platforms () : Object

Property Value

Type: System.Object
An object containing the platforms for which this project can be built.

Examples

See How to: Compile Example Code for Project Model Extensibility for information about how to compile and run this example.

The following example uses the Platforms property in the integrated development environment (IDE):

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

Public Module Module1
    Sub Test()
        Dim prj As VCProject
        Dim mycol As IVCCollection
        Dim myplat As VCPlatform
        prj = DTE.Solution.Projects.Item(1).Object
        mycol = prj.Platforms
        myplat = mycol.Item(1)
        MsgBox(myplat.Name)
    End Sub
End Module

.NET Framework Security

See Also

Reference

VCProject Interface

Microsoft.VisualStudio.VCProjectEngine Namespace