共用方式為


VCFile.DeploymentContent 屬性

取得或設定值,指出選取的檔案的部署狀態。 DeploymentContent適用於某一部署專案是方案的一部分。

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

語法

'宣告
Property DeploymentContent As Boolean
bool DeploymentContent { get; set; }
property bool DeploymentContent {
    bool get ();
    void set (bool value);
}
abstract DeploymentContent : bool with get, set
function get DeploymentContent () : boolean
function set DeploymentContent (value : boolean)

屬性值

型別:System.Boolean
true 如果檔案是以將解決方案部署 ; 會部署為內容 否則, false。

備註

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

範例

下列範例會使用DeploymentContent在整合式的開發環境 (IDE) 中的屬性:

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

Public Module Module1
    Sub Test()
        Dim prj As VCProject
        Dim file As VCFile
        Dim col As IVCCollection
        prj = DTE.Solution.Projects.Item(1).Object
        col = prj.Files
        file = col.Item("ReadMe.txt")
        MsgBox(file.DeploymentContent)
    End Sub
End Module

.NET Framework 安全性

請參閱

參考

VCFile 介面

Microsoft.VisualStudio.VCProjectEngine 命名空間