Everything

build.All


This function runs a build.

[Specification format]

build.All(rebuild = False, waitBuild = True)

[Argument(s)]

Argument

Description

rebuild

Specify whether to run a rebuild of a project.

True: Run a rebuild of a project.

False: Run a build of a project (default).

waitBuild

Specify whether to wait until completing a build.

True: Wait until completing a build (default).

False: Return a prompt without waiting to complete a build.

[Return value]

-

When waitBuild is set to "True"

If a build was completed successfully: True

If a build failed or was canceled: False

 

-

When waitBuild is set to "False"

If a build successfully started execution: True

If a build failed to start execution: False

[Detailed description]

-

This function runs a build of a project.
If a subproject is added to the project, a build of the subproject is run.

-

If rebuild is set to "True", then a rebuild of a project is run.

-

If waitBuild is set to "False", then a prompt is returned without waiting to complete a build.

-

Regardless of whether a build is successful, the build.BuildCompleted event is issued when a build completes.

[Example of use]

>>>build.All()
True
>>>