Saravana Kumar
Saravana Kumar

Reputation: 3729

Dictionary type input in the VSTS Build/Release Task

I have to create a VSTS Build/Release task extension which takes a dictionary as the input type.

I need to pass n number of parameters to the task and also the parameter name and the parameter value should be given dynamically (while configuring the CI and CD).

Is there any input type which is similar to the Variable section where we can specify the Key-Value pair and also we can add n number of variables.

enter image description here

Upvotes: 2

Views: 748

Answers (1)

Harshil Lodhi
Harshil Lodhi

Reputation: 7762

You can take a look at the Azure RG task which has a key value input. See the overrideParameters input, it has a special editor extension.

EDIT: search for editorExtension and you will find more examples of grids. enter image description here

Upvotes: 1

Related Questions