VCProject::Platforms Property
Visual Studio 2015
Gets the platforms for which this project can be built. For Visual C++, this is only Win32.
Assembly: Microsoft.VisualStudio.VCProjectEngine (in Microsoft.VisualStudio.VCProjectEngine.dll)
Property Value
Type: System::Object^An object containing the platforms for which this project can be built.
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
Show: