MSBuild.BuildInParallel 属性
定义
如果为 true,我们会同时调用所有项目的引擎,而不是为每个项目调用一次引擎When this is true we call the engine with all the projects at once instead of calling the engine once per project
此 API 支持产品基础结构,不能在代码中直接使用。
public:
property bool BuildInParallel { bool get(); void set(bool value); };
public bool BuildInParallel { get; set; }
member this.BuildInParallel : bool with get, set
Public Property BuildInParallel As Boolean
属性值
如果尽可能并行生成在 Projects 属性中指定的项目,则为 true
;否则为 false
。true
if the projects specified in the Projects property are built in parallel if possible; otherwise, false
.
注解
默认值是 true
。The default value is true
.