将字符串列表传递给 Azure 应用服务设置中的值

Pass a list of string to values in Azure App Service Settings

我的 appsettings.json 中有一个字符串列表。

我正在使用 Azure DevOps 将我的代码部署到 Azure。

我正在使用发布管道任务“Azure App Sevice Settings”。

我想将我的字符串列表传递给上述任务参数。

我试过下面的

[
{ "name": "test", "value": "["1", "2"]", "slotSetting": false }
]

发布管道出现以下错误

Error: Application Settings object is not a valid JSON.

如何在 Azure 应用服务设置任务中传递字符串列表?

提前致谢

您的 JSON 字符串无效。可能你的意思是 double-quotes 转义?

[
  { "name": "test", "value": "[\"1\", \"2\"]", "slotSetting": false }
]