VCAssemblyReference.VCProjectEngine Property

Definition

Gets a pointer to the project engine.

public:
 property System::Object ^ VCProjectEngine { System::Object ^ get(); };
public:
 property Platform::Object ^ VCProjectEngine { Platform::Object ^ get(); };
[System.Runtime.InteropServices.DispId(680)]
public object VCProjectEngine { [System.Runtime.InteropServices.DispId(680)] get; }
[<System.Runtime.InteropServices.DispId(680)>]
[<get: System.Runtime.InteropServices.DispId(680)>]
member this.VCProjectEngine : obj
Public ReadOnly Property VCProjectEngine As Object

Property Value

A pointer to the project engine.

Implements

Attributes

Examples

The following sample code uses the VCProjectEngine property in the development environment:

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

Public Module Module1  
    Sub Test()  
        Dim filter As VCFilter  
        Dim col As IVCCollection  
        Dim ProjEng As VCProjectEngine  
        Dim prj As VCProject  
        prj = DTE.Solution.Projects.Item(1).Object  
        col = prj.Filters  
        ProjEng = col.VCProjectEngine  
        ProjEng.BuildTiming = False  

    End Sub  
End Module  

Remarks

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

Applies to