VCFile.DeploymentContent Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.
public:
property bool DeploymentContent { bool get(); void set(bool value); };
public:
property bool DeploymentContent { bool get(); void set(bool value); };
[System.Runtime.InteropServices.DispId(406)]
public bool DeploymentContent { [System.Runtime.InteropServices.DispId(406)] get; [System.Runtime.InteropServices.DispId(406)] set; }
[<System.Runtime.InteropServices.DispId(406)>]
[<get: System.Runtime.InteropServices.DispId(406)>]
[<set: System.Runtime.InteropServices.DispId(406)>]
member this.DeploymentContent : bool with get, set
Public Property DeploymentContent As Boolean
Property Value
true
if the file is to be deployed as content when the solution is deployed; otherwise, false
.
- Attributes
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
Remarks
See How to: Compile Example Code for Project Model Extensibility for information about how to compile and run this example.