共用方式為


VCMidlTool.FullIncludePath 屬性

取得建置中包含之所有目錄的清單、以 /I 指定的目錄串連,以及在 VC++ Directories對話方塊中指定的目錄。 也會評估這些目錄中存在的所有巨集。

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

語法

'宣告
ReadOnly Property FullIncludePath As String
string FullIncludePath { get; }
property String^ FullIncludePath {
    String^ get ();
}
abstract FullIncludePath : string with get
function get FullIncludePath () : String

屬性值

型別:System.String
包含在組建中之所有目錄的清單。

範例

請參閱HOW TO:編譯專案模型擴充性的範例程式碼如需有關如何編譯及執行這個範例資訊。

下列範例會取得FullIncludePath在整合式的開發環境 (IDE) 中的編譯器屬性:

[Visual Basic]

' add reference to Microsoft.VisualStudio.VCProjectEngine
Imports EnvDTE
Imports Microsoft.VisualStudio.VCProjectEngine

Public Module Module1
    Sub Test()
        Dim prj As VCProject
        Dim cfgs As IVCCollection
        Dim cfg As VCConfiguration
        Dim tool As VCCLCompilerTool
        Dim ret As String
        prj = DTE.Solution.Projects.Item(1).Object
        cfgs = prj.Configurations
        cfg = cfgs.Item(1)
        tool = cfg.Tools("VCCLCompilerTool")
        ret = tool.FullIncludePath
    End Sub
End Module

.NET Framework 安全性

請參閱

參考

VCMidlTool 介面

Microsoft.VisualStudio.VCProjectEngine 命名空間