diff --git a/src/Websites/Websites/help/Set-AzWebApp.md b/src/Websites/Websites/help/Set-AzWebApp.md index 02a52e7748e6..3576d761f532 100644 --- a/src/Websites/Websites/help/Set-AzWebApp.md +++ b/src/Websites/Websites/help/Set-AzWebApp.md @@ -561,7 +561,15 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### Microsoft.Azure.Commands.WebApps.Models.PSSite ## NOTES +Below provided cmdlet will help you to update Azure Web App to **DOTNETCORE** +$PropertiesObject = @{ + "CURRENT_STACK" = "dotnetcore" +} +New-AzResource -PropertyObject $PropertiesObject -ResourceGroupName "Default-Web-WestUS" -ResourceType Microsoft.Web/sites/config -ResourceName "ContosoWebApp/metadata" -ApiVersion 2018-02-01 -Force + +Replace the values of Default-Web-WestUS with your resource group name of the webapp and ContosoWebApp with the webapp name. + ## RELATED LINKS [Get-AzWebApp](./Get-AzWebApp.md) @@ -575,3 +583,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Start-AzWebApp](./Start-AzWebApp.md) [Stop-AzWebApp](./Stop-AzWebApp.md) + +[New-AzResource](./New-AzResource.md)