VCProjectEngineObjectClass.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
Public Overridable Property BuildLogging As Boolean
'Usage
Dim instance As VCProjectEngineObjectClass 
Dim value As Boolean 

value = instance.BuildLogging

instance.BuildLogging = value
public virtual bool BuildLogging { get; set; }
public:
virtual property bool BuildLogging {
    bool get ();
    void set (bool value);
}
public function get BuildLogging () : boolean 
public 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.

Implements

VCProjectEngine.BuildLogging

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.

Do not instantiate VCProjectEngineObjectClass. Instantiate VCProjectEngineObject instead, as shown below:

Dim Engine As VCProjectEngine
Engine = New VCProjectEngineObject()

.NET Framework Security

See Also

Reference

VCProjectEngineObjectClass Class

VCProjectEngineObjectClass Members

Microsoft.VisualStudio.VCProjectEngine Namespace