VCProject.VCReferences Свойство

Определение

Получает коллекцию ссылок для выбранного проекта.

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

Значение свойства

Object

Коллекция ссылок для выбранного проекта.

Атрибуты

Примеры

Сведения о том, как скомпилировать и запустить этот пример, см. в разделе как скомпилировать пример кода для расширения модели проекта .

' 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  

Применяется к