What is the best way in Azure devops to accept multiple input and create a json file out of it
My requirement is that i need to lis the env and ask user to enter the coresponding target version . Is there any possible way in Azure devops to acieve this
I want to create a json file as given below
{
"Test" :[{
"env" :"1",
"Old": "1.0.0.0",
"New": "2.0.0.1"
},
{
"env" :"2",
"Old": "1.0.0.1",
"New": "2.0.0.2"
},
{
"env" :"3",
"Old": "1.0.0.4",
"New": "2.0.0.1"
},
{
"env" :"4",
"Old": "1.0.0.0",
"New": "5.0.1.1"
},
{
"env" :"5",
"Old": "2.0.0.0",
"New": "3.0.1.1"
},
{
"env" :"6",
"Old": "1.0.0.0",
"New": "2.0.0.1"
},
{
"env" :"7",
"Old": "1.0.0.0",
"New": "2.0.0.1"
}
]
}