VCProjectEngine.BuildLogging Property
Gets or sets a value indicating whether a log file will be created and populated with information about build activity.
Namespace: Microsoft.VisualStudio.VCProjectEngine
Assembly: Microsoft.VisualStudio.VCProjectEngine (in Microsoft.VisualStudio.VCProjectEngine.dll)
Syntax
'Declaration
Property BuildLogging As Boolean
bool BuildLogging { get; set; }
property bool BuildLogging {
bool get ();
void set (bool value);
}
abstract BuildLogging : bool with get, set
function get BuildLogging () : boolean
function set BuildLogging (value : boolean)
Property Value
Type: System.Boolean
true if a log file will be created and populated with information about build activity; otherwise, false.
Remarks
The BuildLogging property is on by default.
This property exposes functionality available from the VC++ Project Settings, Projects and Solutions, Options Dialog Box property page.
Examples
See How to: Compile Example Code for Project Model Extensibility for information about how to compile and run this example.
The following example modifies the BuildLogging 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 cfgs As IVCCollection
Dim cfg As VCConfiguration
Dim ProjEng As VCProjectEngine
prj = DTE.Solution.Projects.Item(1).Object
cfgs = prj.Configurations
ProjEng = cfgs.VCProjectEngine
MsgBox(ProjEng.BuildLogging)
ProjEng.BuildLogging = False
MsgBox(ProjEng.BuildLogging)
End Sub
End Module
.NET Framework Security
- 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.