
Many of these targets are missing support for incremental builds. I.e. the GenerateArchives targets should define Inputs & Outputs so that it only runs when the inputs are newer than the outputs. But for that work, all the dependent targets also need to support incrementality.
This means using parameters like SkipUnchangedFiles for the Copy task, WriteOnlyWhenDifferent for the WriteLinesToFile task and adding Inputs & Outputs to targets that generate outputs differently, not via the Copy or WriteLinesToFile tasks.
Child issues:
Many of these targets are missing support for incremental builds. I.e. the
GenerateArchivestargets should define Inputs & Outputs so that it only runs when the inputs are newer than the outputs. But for that work, all the dependent targets also need to support incrementality.This means using parameters like
SkipUnchangedFilesfor the Copy task,WriteOnlyWhenDifferentfor the WriteLinesToFile task and adding Inputs & Outputs to targets that generate outputs differently, not via the Copy or WriteLinesToFile tasks.Child issues: