Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the VSTS Link Settings feature?

I am talking about this:

enter image description here

The documentation I found is here - https://learn.microsoft.com/en-us/azure/devops/pipelines/process/parameters?view=vsts, but I must be plain stupid, because I do not understand one bit of it.

I do not know why it is so hard, but I cannot find anything meaningful on the web.

We have an on-premises TFS.

like image 533
mark Avatar asked Mar 05 '23 01:03

mark


1 Answers

Let's say you have a build configuration ("Release") that you want to use in conjunction with multiple instances of the Visual Studio Build task.

You could add a variable called BuildConfiguration and then put the value $(BuildConfiguration) in the "Configuration" box for all of your Visual Studio Build tasks.

Or, you could enter the actual value, "Release", and then link the Configuration field in Visual Studio build to a pipeline parameter. Then you can manage the value from the "Pipeline" view.

enter image description here

enter image description here

like image 80
Daniel Mann Avatar answered Mar 11 '23 13:03

Daniel Mann