Project.BuildEnabled Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.