Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Image Removed

Task level dependencies are defined using the DependsOn attribute available in the Task and TaskGroup elements. Multiple dependency definitions are allowed.

In incremental builds, file level dependencies are controlled through timestamps. If a task has a SourceFile and at least one output file defined in the OutputFiles attribute, IncrediBuild compares timestamps to decide whether this task should be run.

An additional parameter, which is considered in the file level dependency check, is the InputFiles attribute. If additional input files are defined, IncrediBuild compares their timestamps to the SourceFile's timestamp as well, to determine if the task should be run.

...

Image Added