Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

like image 590
WinBoss Avatar asked Dec 19 '17 11:12

WinBoss


1 Answers

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

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

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

like image 186
Daniel Mann Avatar answered Oct 19 '22 23:10

Daniel Mann