VCProject.AddProjectReference - метод
Adds a project reference to the project.
Пространство имен: Microsoft.VisualStudio.VCProjectEngine
Сборка: Microsoft.VisualStudio.VCProjectEngine (в Microsoft.VisualStudio.VCProjectEngine.dll)
Синтаксис
'Декларация
Function AddProjectReference ( _
proj As Object _
) As Object
'Применение
Dim instance As VCProject
Dim proj As Object
Dim returnValue As Object
returnValue = instance.AddProjectReference(proj)
Object AddProjectReference(
Object proj
)
Object^ AddProjectReference(
[InAttribute] Object^ proj
)
function AddProjectReference(
proj : Object
) : Object
Параметры
proj
Тип: System.ObjectThe project reference to add.
Возвращаемое значение
Тип: System.Object
An object representing the project reference.
Заметки
You can reference only loaded projects.
Примеры
See How to: Compile Example Code for Project Model Extensibility for information about how to compile and run this example.
AddProjectReference adds a second project as a reference to the first project, if possible.
' Add a reference to Microsoft.VisualStudio.VCProjectEngine and have
' two Visual C++ projects loaded before running this example.
Imports EnvDTE
Imports Microsoft.VisualStudio.VCProjectEngine
Public Module Module1
Sub Test()
Dim prj1, prj2 As VCProject
prj1 = DTE.Solution.Projects.Item(1).Object
prj2 = DTE.Solution.Projects.Item(2).Object
' Adds project 2 as a reference to project 1.
If prj1.CanAddProjectReference(prj2) Then
prj1.AddProjectReference(prj2)
End If
End Sub
End Module
Разрешения
- Полное доверие для непосредственно вызывающего метода. Этот член не может быть использован частично доверенным кодом. Дополнительные сведения см. в разделе Using Libraries from Partially Trusted Code.