Skip to content

Commit a709bd2

Browse files
committed
fix naming inconsistencies
1 parent f3bc421 commit a709bd2

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

articles/app-service/containers/tutorial-auth-aad.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,8 +84,8 @@ az appservice plan create --name myAuthAppServicePlan --resource-group myAuthRes
8484
az webapp create --resource-group myAuthResourceGroup --plan myAuthAppServicePlan --name <front-end-app-name> --runtime "DOTNETCORE|LTS" --deployment-local-git --query deploymentLocalGitUrl
8585
az webapp create --resource-group myAuthResourceGroup --plan myAuthAppServicePlan --name <back-end-app-name> --runtime "DOTNETCORE|LTS" --deployment-local-git --query deploymentLocalGitUrl
8686
# Currently the following commands are required to set the .NET Core version properly
87-
az webapp config set --resource-group myResourceGroup --name <front-end-app-name> --linux-fx-version "DOTNETCORE|3.1.0"
88-
az webapp config set --resource-group myResourceGroup --name <back-end-app-name> --linux-fx-version "DOTNETCORE|3.1.0"
87+
az webapp config set --resource-group myAuthResourceGroup --name <front-end-app-name> --linux-fx-version "DOTNETCORE|3.1"
88+
az webapp config set --resource-group myAuthResourceGroup --name <back-end-app-name> --linux-fx-version "DOTNETCORE|3.1"
8989
```
9090

9191
> [!NOTE]

includes/app-service-web-create-web-app-dotnetcore-linux-no-h.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Currently, you need to run the following extra command to configure the .NET Cor
4949

5050
```azurecli-interactive
5151
# Bash
52-
az webapp config set --resource-group myResourceGroup --name <app-name> --linux-fx-version "DOTNETCORE|3.1.0"
52+
az webapp config set --resource-group myResourceGroup --name <app-name> --linux-fx-version "DOTNETCORE|3.1"
5353
# PowerShell
54-
az --% webapp config set --resource-group myResourceGroup --name <app-name> --linux-fx-version "DOTNETCORE|3.1.0"
54+
az --% webapp config set --resource-group myResourceGroup --name <app-name> --linux-fx-version "DOTNETCORE|3.1"
5555
```

0 commit comments

Comments
 (0)