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)
'Declaration
Property DeploymentContent As Boolean
Get
Set
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)
Type: System.Boolean
true 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
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.