Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
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
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.