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

'Declaration
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)

Property Value

Type: 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

.NET Framework Security

See Also

Reference

VCFile Interface

Microsoft.VisualStudio.VCProjectEngine Namespace