I've come across a lot online saying it's bad practice to edit the Function.Json as a post-build process. The recommendations are setting the App.Settings on the Azure Function but what I want to do it replace the bindings in the Function.Json how do I do that in the app settings? I essentially want the same values in my local.settings.json to override the Function.Json
My local.settings.json
{
....
"bindings": [
{
"type": "queueTrigger",
"direction": "in",
"name": "myQueueItem",
"queueName": "dev-inbound",
"connection": "connectionStringV1"
}
]
...
}