From f6f88be5bd97b7d9a5743c4165e450594cc3bfa0 Mon Sep 17 00:00:00 2001 From: Ricardo Cabral <9170251+rramoscabral@users.noreply.github.com> Date: Thu, 6 Aug 2026 15:39:30 +0100 Subject: [PATCH 1/3] Specify runtime for web app creation command Runtime is mandatory when creating an Azure WebApp using AZ CLI. --- Instructions/advanced/03-configure-pipelines-code-yaml.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Instructions/advanced/03-configure-pipelines-code-yaml.md b/Instructions/advanced/03-configure-pipelines-code-yaml.md index 53c9647..b7c1121 100644 --- a/Instructions/advanced/03-configure-pipelines-code-yaml.md +++ b/Instructions/advanced/03-configure-pipelines-code-yaml.md @@ -98,7 +98,7 @@ You'll create an Azure web app to deploy your application to. ```bash WEBAPPNAME=eshoponWebYAML$RANDOM$RANDOM - az webapp create --resource-group $RESOURCEGROUPNAME --plan $SERVICEPLANNAME --name $WEBAPPNAME + az webapp create --resource-group $RESOURCEGROUPNAME --plan $SERVICEPLANNAME --name $WEBAPPNAME --runtime "DOTNETCORE|10.0" ``` > **Note**: Record the name of the web app. You'll need it later in this lab. From b9aaa5a6405072d9679f01b5f48fdd8ccebf9807 Mon Sep 17 00:00:00 2001 From: Ricardo Cabral <9170251+rramoscabral@users.noreply.github.com> Date: Thu, 6 Aug 2026 15:42:41 +0100 Subject: [PATCH 2/3] Update 04-control-deployments-release-gates.md Runtime is mandatory when creating an Azure WebApp using AZ CLI. --- Instructions/advanced/04-control-deployments-release-gates.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Instructions/advanced/04-control-deployments-release-gates.md b/Instructions/advanced/04-control-deployments-release-gates.md index f105563..c220adf 100644 --- a/Instructions/advanced/04-control-deployments-release-gates.md +++ b/Instructions/advanced/04-control-deployments-release-gates.md @@ -134,8 +134,8 @@ You'll create two Azure web apps representing the DevTest and Production environ ```bash SUFFIX=$RANDOM$RANDOM - az webapp create -g $RESOURCEGROUPNAME -p $SERVICEPLANNAME -n RGATES$SUFFIX-DevTest - az webapp create -g $RESOURCEGROUPNAME -p $SERVICEPLANNAME -n RGATES$SUFFIX-Prod + az webapp create -g $RESOURCEGROUPNAME -p $SERVICEPLANNAME -n RGATES$SUFFIX-DevTest --runtime "DOTNETCORE|10.0" + az webapp create -g $RESOURCEGROUPNAME -p $SERVICEPLANNAME -n RGATES$SUFFIX-Prod --runtime "DOTNETCORE|10.0" ``` > **Note**: Record the name of the DevTest web app. You'll need it later. From fcdd93d0ce00be9cfb623caaf912358143f14a23 Mon Sep 17 00:00:00 2001 From: Ricardo Cabral <9170251+rramoscabral@users.noreply.github.com> Date: Thu, 6 Aug 2026 15:45:28 +0100 Subject: [PATCH 3/3] Update 08-monitor-application-performance-azure-load-testing.md --- .../08-monitor-application-performance-azure-load-testing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Instructions/advanced/08-monitor-application-performance-azure-load-testing.md b/Instructions/advanced/08-monitor-application-performance-azure-load-testing.md index aaaea24..c9757de 100644 --- a/Instructions/advanced/08-monitor-application-performance-azure-load-testing.md +++ b/Instructions/advanced/08-monitor-application-performance-azure-load-testing.md @@ -99,7 +99,7 @@ You'll create Azure resources needed for this lab using Azure Cloud Shell. ```bash WEBAPPNAME=az400eshoponweb$RANDOM$RANDOM - az webapp create --resource-group $RESOURCEGROUPNAME --plan $SERVICEPLANNAME --name $WEBAPPNAME + az webapp create --resource-group $RESOURCEGROUPNAME --plan $SERVICEPLANNAME --name $WEBAPPNAME --runtime "DOTNETCORE|10.0" ``` > **Note**: Record the name of the web app. You will need it later in this lab.