It's my first time using SlowCheetah for JSON config file. I could not find a way to let it transform an array settings. For example, if my base config file has this setting:
{
"Settings" : [1, 2, 3]
}
and I want to transfer it to:
{
"Settings" : [4, 5, 6]
}
It simply does the merge, instead of replacement. Is there a way I can tell it what to do? Like the way we using xdt:Transform="Replace" in xml config file.