Skip to content

Commit 979c2ed

Browse files
authored
pull base content,head:MicrosoftDocs:main,into:wwlpublishsync
2 parents 5547ff1 + ec616b8 commit 979c2ed

30 files changed

+485
-62
lines changed

learn-pr/aspnetcore/interact-with-data-blazor-web-apps/includes/3-exercise-create-user-interfaces-with-blazor-components.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ If you haven't created a Blazor app before, follow the [setup instructions for B
1515
1. Run the dotnet terminal command:
1616

1717
```dotnetcli
18-
dotnet new blazorserver -o BlazingPizza --no-https true
18+
dotnet new blazor -o BlazingPizza
1919
```
2020
21-
This command creates a new Blazor server project in a folder named **BlazingPizza**. It also tells the project to disable HTTPS.
21+
This command creates a new Blazor server project in a folder named **BlazingPizza**.
2222
1. Select **File** > **Open folder**.
2323
1. In the Open dialog, go to the **BlazingPizza** folder and choose **Select Folder**.
2424

learn-pr/azure/build-and-store-container-images/includes/4-deploy-image.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Azure Container Registry doesn't support unauthenticated access and requires aut
3131
1. Deploy a container instance using the `az container create` command. Make sure you replace `<admin-username>` and `<admin-password>` with your admin username and password from the previous command.
3232
3333
```azurecli-interactive
34-
az container create --resource-group learn-acr-rg --name acr-tasks --image $ACR_NAME.azurecr.io/helloacrtasks:v1 --registry-login-server $ACR_NAME.azurecr.io --ip-address Public --location eastus --registry-username <admin-username> --registry-password <admin-password>
34+
az container create --resource-group learn-acr-rg --name acr-tasks --image $ACR_NAME.azurecr.io/helloacrtasks:v1 --registry-login-server $ACR_NAME.azurecr.io --ip-address Public --location eastus --registry-username <admin-username> --registry-password <admin-password> --os-type Linux --cpu 1 --memory 1
3535
```
3636
3737
2. Get the IP address of the Azure container instance using the `az container show` command.

learn-pr/azure/develop-test-deploy-azure-functions-with-visual-studio/1-introduction.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Introduction
44
metadata:
55
title: Introduction
66
description: Introduction
7-
ms.date: 03/01/2023
7+
ms.date: 05/07/2025
88
author: ggailey777
99
ms.author: glenga
1010
manager: jmartens

learn-pr/azure/develop-test-deploy-azure-functions-with-visual-studio/2-develop-and-test-azure-functions-locally.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
### YamlMime:ModuleUnit
22
uid: learn.develop-test-deploy-azure-functions-with-visual-studio.2-develop-and-test-azure-functions-locally
3-
title: Create and test a simple Azure Function locally with Visual Studio
3+
title: Create and test an Azure Function locally with Visual Studio
44
metadata:
5-
title: Create and test a simple Azure Function locally with Visual Studio
6-
description: Create and test a simple Azure Function locally with Visual Studio.
7-
ms.date: 03/01/2023
5+
title: Create and test an Azure Function locally with Visual Studio
6+
description: Create and test an Azure Function locally with Visual Studio.
7+
ms.date: 05/07/2025
88
author: ggailey777
99
ms.author: glenga
1010
manager: jmartens

learn-pr/azure/develop-test-deploy-azure-functions-with-visual-studio/3-exercise-develop-and-test-azure-functions-locally.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
### YamlMime:ModuleUnit
22
uid: learn.develop-test-deploy-azure-functions-with-visual-studio.3-exercise-develop-and-test-azure-functions-locally
3-
title: Exercise - Create and test a simple Azure Function locally with Visual Studio
3+
title: Exercise - Create and test an Azure Function locally with Visual Studio
44
metadata:
5-
title: Exercise - Create and test a simple Azure Function locally with Visual Studio
6-
description: Exercise - Create and test a simple Azure Function locally with Visual Studio
7-
ms.date: 03/01/2023
5+
title: Exercise - Create and test an Azure Function locally with Visual Studio
6+
description: Exercise - Create and test an Azure Function locally with Visual Studio.
7+
ms.date: 05/07/2025
88
author: ggailey777
99
ms.author: glenga
1010
manager: jmartens

learn-pr/azure/develop-test-deploy-azure-functions-with-visual-studio/4-publish-azure-functions.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
### YamlMime:ModuleUnit
22
uid: learn.develop-test-deploy-azure-functions-with-visual-studio.4-publish-azure-functions
3-
title: Publish a simple Azure Function
3+
title: Publish an Azure Function
44
metadata:
5-
title: Publish a simple Azure Function
6-
description: Publish a simple Azure Function
7-
ms.date: 03/01/2023
5+
title: Publish an Azure Function
6+
description: Publish an Azure Function
7+
ms.date: 05/07/2025
88
author: ggailey777
99
ms.author: glenga
1010
manager: jmartens

learn-pr/azure/develop-test-deploy-azure-functions-with-visual-studio/5-exercise-publish-azure-functions.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
### YamlMime:ModuleUnit
22
uid: learn.develop-test-deploy-azure-functions-with-visual-studio.5-exercise-publish-azure-functions
3-
title: Exercise - Publish a simple Azure Function
3+
title: Exercise - Publish an Azure Function
44
metadata:
5-
title: Exercise - Publish a simple Azure Function
6-
description: Exercise - Publish a simple Azure Function
7-
ms.date: 03/01/2023
5+
title: Exercise - Publish an Azure Function
6+
description: Exercise - Publish an Azure Function
7+
ms.date: 05/07/2025
88
author: ggailey777
99
ms.author: glenga
1010
manager: jmartens

learn-pr/azure/develop-test-deploy-azure-functions-with-visual-studio/6-unit-test-azure-functions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Exercise - Unit test an Azure Function
44
metadata:
55
title: Exercise - Unit test an Azure Function
66
description: Exercise - Unit test an Azure Function
7-
ms.date: 03/01/2023
7+
ms.date: 05/07/2025
88
author: ggailey777
99
ms.author: glenga
1010
manager: jmartens

learn-pr/azure/develop-test-deploy-azure-functions-with-visual-studio/7-summary.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Summary
44
metadata:
55
title: Summary
66
description: Summary
7-
ms.date: 03/01/2023
7+
ms.date: 05/07/2025
88
author: ggailey777
99
ms.author: glenga
1010
manager: jmartens

learn-pr/azure/develop-test-deploy-azure-functions-with-visual-studio/includes/1-introduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ In this module, you will:
2424
- Experience developing solutions in Visual Studio or a similar integrated development environment
2525

2626
> [!IMPORTANT]
27-
> The exercises in this module require a local installation of Visual Studio 2022 (hereafter referred to as Visual Studio) in a Windows environment.
27+
> The exercises in this module require a local installation of Visual Studio 2022 in a Windows environment.

0 commit comments

Comments
 (0)