Partager via


Project.BuildEnabled Property

Definition

This controls whether or not the building of targets/tasks is enabled for this project. This is for security purposes in case a host wants to closely control which projects it allows to run targets/tasks. By default, for a newly created project, we will use whatever setting is in the parent engine.

public:
 property bool BuildEnabled { bool get(); void set(bool value); };
public bool BuildEnabled { get; set; }
member this.BuildEnabled : bool with get, set
Public Property BuildEnabled As Boolean

Property Value

true if the project is enabled for building tasks and targets; otherwise, false.

Remarks

By default, this property uses value of the BuildEnabled property of the project's ParentEngine.

Applies to