How to display “Area path” in VSTS build task input PickList?
I need to display the the "Area path" in a VSTS Build task input PickList, so that I can retrieve the user selected "Area path" value from my build task and set it in a work item generated by the build task. Is this possible with existing VSTS API? If so how to do this? I think this is done in Copy Files task in Utilty section. Thanks in advance. Yes, it is. You can add following section in task.josn file to achieve this: "inputs": [ { "name": "rootArea", "type": "pickList", "label": "rootArea", "defaultValue": "", "required": false, "helpMarkDown": "Select the root area.", "properties": {