I'm creating an Azure Function project on Visual Studio 2017,
the application was working well until I add a string array to local.settings.json
workinging json:
{
"IsEncrypted": false,
"Values": {
"AzureWebJobsStorage": "UseDevelopmentStorage=true",
"AzureWebJobsDashboard": "UseDevelopmentStorage=true",
"RequestTimeout": "600000"
}
}
Not working json:
{
"IsEncrypted": false,
"Values": {
"AzureWebJobsStorage": "UseDevelopmentStorage=true",
"AzureWebJobsDashboard": "UseDevelopmentStorage=true",
"RequestTimeout": "600000",
"Urls": [
"https://url1.com.br/",
"https://url2.com.br"
]
}
}
What should I have to do to add this string array to the config file?


