如何在部署的Azure Web App中通过PowerShell访问appsettings.json?

时间:2016-11-02 20:50:18

标签: .net azure asp.net-core azure-powershell

我需要能够在已部署的Azure Web App中修改appsettings.json中的设置。

我可以通过PowerShell通过以下命令访问AppConfig和Connectionstrings:

$webApp = Get-AzureRmWebApp -ResourceGroupName $resourceGroupName -Name $websiteName
$webApp.SiteConfig.AppSettings
$webApp.SiteConfig.ConnectionStrings

但是,是否可以通过PowerShell访问appsettings.json?

1 个答案:

答案 0 :(得分:0)

据我所知,您可以在Azure Web App中添加App Settings以覆盖appsettings.json文件中的配置值。我假设您的appsettings.json文件如下所示:

$(CFLAGS)

然后,您可以按照以下脚本修改设置:

  <?php $domain = yii\helpers\Url::base(true);
      echo Html::img($domain.'/images/logo.png', ['alt' => 'My logo']) 
  ?>