Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions src/Websites/Websites/ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
- Additional information about change #1
-->
## Upcoming Release
* Fixed `Get-AzWebApp` to return SiteConfig details in the response when requested the WebApps under subscription [#17184]

## Version 2.10.0
* Updated `New-AzAppServicePlan` to create an app service plan with host environment id #16094
Expand Down
1 change: 1 addition & 0 deletions src/Websites/Websites/Cmdlets/WebApps/GetAzureWebApp.cs
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,7 @@ private void GetBySubscription()
{
foreach(var item in result)
{
WebsitesClient.GetWebAppConfiguration(rg, item.Name, null, item);
list.Add(new PSSite(item));
}
}
Expand Down