This topic has not yet been rated - Rate this topic

VCProject.VCReferences Property 

Gets the collection of references for the selected project.

Namespace: Microsoft.VisualStudio.VCProjectEngine
Assembly: Microsoft.VisualStudio.VCProjectEngine (in microsoft.visualstudio.vcprojectengine.dll)

Object VCReferences { get; }
/** @property */
Object get_VCReferences ()

function get VCReferences () : Object

Property Value

A collection of references for the selected project.

See Samples for Project Model Extensibility for information about how to compile and run this example.

' 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
Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.