标签: azure-devops azure-pipelines azure-pipelines-build-task
我想知道是否可以引用连接变量name1和name2作为构建过程的一部分?假设我想创建一个名为wins-development的资源组。 name1 = wins-,name2 = development。
答案 0 :(得分:4)
您不需要做任何特殊的事情来连接变量。
让我们说你foo ='你好'和bar ='世界'。
foo
bar
$(foo)$(bar) =' helloworld'
$(foo)$(bar)