VCProject.VCReferences Property

Definition

Gets the collection of references for the selected project.

C++/CX
public:
 property Platform::Object ^ VCReferences { Platform::Object ^ get(); };

Property Value

A collection of references for the selected project.

Attributes

Examples

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

VB
' Add a reference to Microsoft.VisualStudio.VCProjectEngine and have a   
' Visual C++ project that contains a reference loaded before running   
' this example.  
Imports EnvDTE  
Imports Microsoft.VisualStudio.VCProjectEngine  

Public Module Module1  
    Sub Test()  
        Dim prj As VCProject  
        Dim ref As VCReference  

        prj = DTE.Solution.Item(1).Object  
        ref = prj.VCReferences.Item(1)  
        MsgBox("Reference name: " & ref.Name)  
        MsgBox("Reference path: " & ref.FullPath)  
    End Sub  
End Module  

Applies to

Proizvod Verzije
Visual Studio SDK 2015, 2017, 2019, 2022