if I have
<target name="A" depends="B,C"/>
is there a deterministic order of execution of targets B
and C
? Are they executed one after the other in the order of their appearance in the list, are they executed in parallel? Does C
wait for B
to finish?