VCFile::DeploymentContent Property
Visual Studio 2015
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.
Assembly: Microsoft.VisualStudio.VCProjectEngine (in Microsoft.VisualStudio.VCProjectEngine.dll)
Property Value
Type: System::Booleantrue if the file is to be deployed as content when the solution is deployed; otherwise, false.
See How to: Compile Example Code for Project Model Extensibility for information about how to compile and run this example.
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
Show: