Consider the following
{
"foo": [ "cat", "dog" ]
}
I want to replace these values in Octopus with
{
"foo": [ "wolf" ]
}
How do I do it with Octopus? I can't replace with ["wolf"] in the value as I receive an error: Invalid JSON: Expecting ','
.
I'm using dotnet core.