Skip to content

Commit acbc215

Browse files
Incorporate feedback.
1 parent 4054f2d commit acbc215

9 files changed

+8
-8
lines changed
-2.93 KB
Loading
246 Bytes
Loading
-377 Bytes
Loading
38 Bytes
Loading
436 Bytes
Loading
317 Bytes
Loading
276 Bytes
Loading
-1.12 KB
Loading

articles/app-service/quickstart-dotnetcore.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -399,13 +399,13 @@ Follow these steps to create your App Service resources and publish your project
399399
400400
1. Sign into your Azure account by using the [Connect-AzAccount](/powershell/module/az.accounts/connect-azaccount) command and following the prompt:
401401

402-
```azurepowershell-interactive
402+
```azurepowershell
403403
Connect-AzAccount
404404
```
405405
<!-- ### [Deploy to Windows](#tab/windows) -->
406406
1. Create a new app by using the [New-AzWebApp](/powershell/module/az.websites/new-azwebapp) command:
407407

408-
```azurepowershell-interactive
408+
```azurepowershell
409409
New-AzWebApp -ResourceGroupName myResourceGroup -Name <app-name> -Location westeurope
410410
```
411411

@@ -418,7 +418,7 @@ Follow these steps to create your App Service resources and publish your project
418418
419419
2. Create the Azure resources you need:
420420
421-
```azurepowershell-interactive
421+
```azurepowershell
422422
New-AzResourceGroup -Name myResourceGroup -Location westeurope
423423
New-AzAppServicePlan -ResourceGroupName myResourceGroup -Name myAppServicePlan -Location westeurope -Linux
424424
New-AzWebApp -ResourceGroupName myResourceGroup -AppServicePlan myAppServicePlan -Name <app-name>
@@ -441,14 +441,14 @@ Follow these steps to create your App Service resources and publish your project
441441

442442
1. Change to the release directory and create a zip file from the contents:
443443

444-
```powershell-interactive
444+
```powershell
445445
cd bin\Release\net8.0\publish
446446
Compress-Archive -Path * -DestinationPath deploy.zip
447447
```
448448

449449
1. Publish the zip file to the Azure app using the [Publish-AzWebApp](/powershell/module/az.websites/publish-azwebapp) command:
450450

451-
```azurepowershell-interactive
451+
```azurepowershell
452452
Publish-AzWebApp -ResourceGroupName myResourceGroup -Name <app-name> -ArchivePath (Get-Item .\deploy.zip).FullName -Force
453453
```
454454

@@ -706,14 +706,14 @@ You see the updated ASP.NET Core 8.0 web app displayed in the page.
706706

707707
1. Change to the release directory and create a zip file from the contents:
708708

709-
```powershell-interactive
709+
```powershell
710710
cd bin\Release\net8.0\publish
711711
Compress-Archive -Path * -DestinationPath deploy.zip -Force
712712
```
713713

714714
1. Publish the zip file to the Azure app using the [Publish-AzWebApp](/powershell/module/az.websites/publish-azwebapp) command:
715715

716-
```azurepowershell-interactive
716+
```azurepowershell
717717
Publish-AzWebApp -ResourceGroupName myResourceGroup -Name <app-name> -ArchivePath (Get-Item .\deploy.zip).FullName -Force
718718
```
719719

@@ -870,7 +870,7 @@ The **Overview** page for your web app, contains options for basic management li
870870
<!-- markdownlint-enable MD044 -->
871871
In the preceding steps, you created Azure resources in a resource group. If you don't expect to need these resources in the future, delete the resource group by running the following command in the Cloud Shell:
872872

873-
```azurecli-interactive
873+
```azurecli
874874
az group delete
875875
```
876876

0 commit comments

Comments
 (0)