ToolTask::UseCommandProcessor Property
Visual Studio 2015
Gets or sets a switch that specifies whether the tool task will create a batch file for the command-line and execute that using the command-processor, rather than executing the command directly.
MSBuild is now included in Visual Studio instead of the .NET Framework. You can use MSBuild 12.0 side-by-side with versions previously deployed with the .NET Framework.For more information, see What's New in MSBuild 12.0.
Assembly: Microsoft.Build.Utilities.Core (in Microsoft.Build.Utilities.Core.dll)
public: property bool UseCommandProcessor { [CompilerGeneratedAttribute] bool get(); [CompilerGeneratedAttribute] void set(bool value); }
Property Value
Type: System::BooleanIf true, the tool task will create a batch file for the command-line and execute that using the command-processor. If false the tool task will execute the command directly.
Show: