VCProjectEngineObjectClass::ShowEnvironmentInBuildLog Property
Visual Studio 2015
Gets or sets a value indicating whether or not to echo all environment variables into the build log during builds of Visual C++ projects.
Assembly: Microsoft.VisualStudio.VCProjectEngine (in Microsoft.VisualStudio.VCProjectEngine.dll)
public: property bool ShowEnvironmentInBuildLog { virtual bool get(); virtual void set(bool value); }
Property Value
Type: System::Booleantrue if all environment variables are echoed into the build log; otherwise, false.
Do not instantiate VCProjectEngineObjectClass. Instantiate VCProjectEngineObject instead, as shown below:
Dim Engine As VCProjectEngine Engine = New VCProjectEngineObject()
Show: