Question

task A -depends B, C, D { ... }
task B { ... }
task C { ... }
task D { ... }

Is build script guaranteed to run in this order?

(B - C - D) - A

Or backwards?

(D - C - B) - A

Or random?

(B - D - C) - A

Or in parallel?

B
 \
  \
C--A
  /
 /
D
Was it helpful?

Solution

It is implemented as foreach so the first one is garanteed.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top