共用方式為


VCProject.CanAddProjectReference 方法

傳回是否可以加入指定的專案參考。

命名空間:  Microsoft.VisualStudio.VCProjectEngine
組件:  Microsoft.VisualStudio.VCProjectEngine (在 Microsoft.VisualStudio.VCProjectEngine.dll 中)

語法

'宣告
Function CanAddProjectReference ( _
    proj As Object _
) As Boolean
bool CanAddProjectReference(
    Object proj
)
bool CanAddProjectReference(
    [InAttribute] Object^ proj
)
abstract CanAddProjectReference : 
        proj:Object -> bool
function CanAddProjectReference(
    proj : Object
) : boolean

參數

  • proj
    類型:Object

    專案參考。

傳回值

類型:Boolean
如果可以加入指定的專案參考則為 true,否則為 false。

備註

這個方法與 AddProjectReference 方法搭配使用。 您可以使用這個方法會決定是否可以加入專案參考,因此,,如果是的話,則呼叫 AddProjectReference

範例

如需如何編譯及執行範例的詳細資訊,請參閱 如何:編譯 Visual C++ 程式碼模型擴充性的範例程式碼

如果CanAddProjectReference 可以加入第二個專案,對第一個專案的參考。

' 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

.NET Framework 安全性

請參閱

參考

VCProject 介面

Microsoft.VisualStudio.VCProjectEngine 命名空間