VCFile.DeploymentContent Property

Gets or sets a value indicating the deployment status of the selected file. DeploymentContent is used when a deployment project is part of the solution.

Namespace:  Microsoft.VisualStudio.VCProjectEngine
Assembly:  Microsoft.VisualStudio.VCProjectEngine (in Microsoft.VisualStudio.VCProjectEngine.dll)

Syntax

声明
Property DeploymentContent As Boolean
用法
Dim instance As VCFile
Dim value As Boolean

value = instance.DeploymentContent

instance.DeploymentContent = value
bool DeploymentContent { get; set; }
property bool DeploymentContent {
    bool get ();
    void set (bool value);
}
function get DeploymentContent () : boolean
function set DeploymentContent (value : boolean)

Property Value

Type: System.Boolean

true if the file is to be deployed as content when the solution is deployed; otherwise, false.

Remarks

See How to: Compile Example Code for Project Model Extensibility for information about how to compile and run this example.

Examples

The following example uses the DeploymentContent property in the integrated development environment (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

Permissions

See Also

Reference

VCFile Interface

VCFile Members

Microsoft.VisualStudio.VCProjectEngine Namespace