WinBoss
WinBoss

Reputation: 923

VSTS. Reference concatenated variables

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

Upvotes: 5

Views: 6382

Answers (1)

Daniel Mann
Daniel Mann

Reputation: 58980

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

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

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

Upvotes: 9

Related Questions