ToolTask.UseCommandProcessor 属性
定义
当设置为 true 时,工具任务将为命令行创建一个批处理文件并使用命令处理器执行该文件,而不是直接执行该命令。When set to true, 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.
public:
property bool UseCommandProcessor { bool get(); void set(bool value); };
public bool UseCommandProcessor { get; set; }
member this.UseCommandProcessor : bool with get, set
Public Property UseCommandProcessor As Boolean
属性值
true
如果工具任务将为命令行创建一个批处理文件并使用命令处理器执行该文件,则为; 否则为。 false
如果工具任务将直接执行命令,则为。true
if the tool task will create a batch file for the command-line and execute that using the command-processor; false
if the tool task will execute the command directly.