VCProjectEngine.BuildLogging - свойство
Gets or sets a value indicating whether a log file will be created and populated with information about build activity.
Пространство имен: Microsoft.VisualStudio.VCProjectEngine
Сборка: Microsoft.VisualStudio.VCProjectEngine (в Microsoft.VisualStudio.VCProjectEngine.dll)
Синтаксис
'Декларация
Property BuildLogging As Boolean
'Применение
Dim instance As VCProjectEngine
Dim value As Boolean
value = instance.BuildLogging
instance.BuildLogging = value
bool BuildLogging { get; set; }
property bool BuildLogging {
bool get ();
void set (bool value);
}
function get BuildLogging () : boolean
function set BuildLogging (value : boolean)
Значение свойства
Тип: System.Boolean
true if a log file will be created and populated with information about build activity; otherwise, false.
Заметки
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.
Примеры
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
Разрешения
- Полное доверие для непосредственно вызывающего метода. Этот член не может быть использован частично доверенным кодом. Дополнительные сведения см. в разделе Using Libraries from Partially Trusted Code.