我正在尝试从使用流利的管理 API配置的函数应用程序中删除 AzureWebJobsDashboard 应用程序设置
var fnApp = await azure.AppServices.FunctionApps
.Define("fnappname")
.WithExistingAppServicePlan(fnAppPlan)
.WithExistingResourceGroup(resourceGroup)
.WithExistingStorageAccount(fnStorage)
.WithRuntimeVersion("~2")
.WithHttp20Enabled(true)
.WithAppSetting("AzureWebJobsDashboard", null)
.WithTags(tags)
.CreateAsync();
我尝试将应用程序设置设置为 null 以及空字符串,但这似乎没有什么区别,而且我没有看到显式删除设置的方法。