VSTS。引用级联变量
VSTS. Reference concatenated variables
我想知道是否可以在构建过程中引用连接的变量 name1 和 name2?假设我想创建一个名为 winning-development 的资源组。其中 name1=winning-,name2=development。
您无需执行任何特殊操作即可连接变量。
假设您有 foo
= 'hello' 和 bar
= 'world'。
$(foo)$(bar)
= 'helloworld'
我想知道是否可以在构建过程中引用连接的变量 name1 和 name2?假设我想创建一个名为 winning-development 的资源组。其中 name1=winning-,name2=development。
您无需执行任何特殊操作即可连接变量。
假设您有 foo
= 'hello' 和 bar
= 'world'。
$(foo)$(bar)
= 'helloworld'