VCProjectEngineObjectClass.ShowEnvironmentInBuildLog Property
Gets or sets a value indicating whether or not to echo all environment variables into the build log during builds of Visual C++ projects.
Namespace: Microsoft.VisualStudio.VCProjectEngine
Assembly: Microsoft.VisualStudio.VCProjectEngine (in Microsoft.VisualStudio.VCProjectEngine.dll)
Syntax
'Declaration
Public Overridable Property ShowEnvironmentInBuildLog As Boolean
'Usage
Dim instance As VCProjectEngineObjectClass
Dim value As Boolean
value = instance.ShowEnvironmentInBuildLog
instance.ShowEnvironmentInBuildLog = value
public virtual bool ShowEnvironmentInBuildLog { get; set; }
public:
virtual property bool ShowEnvironmentInBuildLog {
bool get ();
void set (bool value);
}
public function get ShowEnvironmentInBuildLog () : boolean
public function set ShowEnvironmentInBuildLog (value : boolean)
Property Value
Type: System.Boolean
true if all environment variables are echoed into the build log; otherwise, false.
Implements
VCProjectEngine.ShowEnvironmentInBuildLog
Remarks
Do not instantiate VCProjectEngineObjectClass. Instantiate VCProjectEngineObject instead, as shown below:
Dim Engine As VCProjectEngine
Engine = New VCProjectEngineObject()
.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.
See Also
Reference
VCProjectEngineObjectClass Class