I try Something like in vsts release management:
- Define variable a with : 1,2,3
- Define variable b with : 4,5,6
- Define variable c with : $(a),$(b)
- Use variable c in field Multiplier when i use environment Multi-configuration parallelism capability.
Result : 2 times environments deployed : $(a) and $(b) I want deploy 6 times the envoironment : 1,2,3,4,5 and 6
An Idea to workaround ?
In a build task the variable $(c) is expanded and value is : 1,2,3,4,5,6 ... I don't uderstand why field "Multiplier" not expand the variable