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 collection of references for the selected project.
Namespace: Microsoft.VisualStudio.VCProjectEngine
Assembly: Microsoft.VisualStudio.VCProjectEngine (in Microsoft.VisualStudio.VCProjectEngine.dll)
Syntax
'Declaration
ReadOnly Property VCReferences As Object
Get
Object VCReferences { get; }
property Object^ VCReferences {
Object^ get ();
}
abstract VCReferences : Object
function get VCReferences () : Object
Property Value
Type: System.Object
A collection of references for the selected project.
Implements
Examples
' 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
.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.