Reputation: 3729
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.
Upvotes: 2
Views: 748
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.
Upvotes: 1