5
votes

I was wondering if it possible to reference concatenated variable name1 and name2 as part of build process? Suppose I'd like to create a resource group called winning-development. Where name1=winning-, and name2=development. enter image description here

enter image description here

1

1 Answers

8
votes

You don't need to do anything special to concatenate variables.

Let's say you had foo = 'hello' and bar = 'world'.

$(foo)$(bar) = 'helloworld'