Skip to content

Commit 15190a4

Browse files
authored
pull base content,head:MicrosoftDocs:main,into:wwlpublishsync
2 parents 3efb7cb + 1c9ea0f commit 15190a4

File tree

86 files changed

+592
-818
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

86 files changed

+592
-818
lines changed

.openpublishing.redirection.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40773,6 +40773,11 @@
4077340773
"redirect_url": "https://learn.microsoft.com/training/browse/",
4077440774
"redirect_document_id": false
4077540775
},
40776+
{
40777+
"source_path": "learn-pr/paths/explore-azure-devops-with-github/index.yml",
40778+
"redirect_url": "https://learn.microsoft.com/training/paths/az-400-implement-ci-azure-pipelines-github-actions/",
40779+
"redirect_document_id": false
40780+
},
4077640781
{
4077740782
"source_path": "learn-pr/azure/manage-device-identity-ad-join/1-introduction.yml",
4077840783
"redirect_url": "https://learn.microsoft.com/en-us/entra/identity/devices/overview",
@@ -40802,6 +40807,16 @@
4080240807
"source_path": "learn-pr/azure/manage-device-identity-ad-join/index.yml",
4080340808
"redirect_url": "https://learn.microsoft.com/en-us/entra/identity/devices/overview",
4080440809
"redirect_document_id": false
40810+
},
40811+
{
40812+
"source_path": "learn-pr/wwl-azure/guided-project-create-ai-travel-agent/4-exercise-route-user-intent.md",
40813+
"redirect_url": "/training/modules/guided-project-create-ai-travel-agent/",
40814+
"redirect_document_id": false
40815+
},
40816+
{
40817+
"source_path": "learn-pr/wwl-azure/guided-project-create-ai-travel-agent/5-exercise-provide-context-cues.md",
40818+
"redirect_url": "/training/modules/guided-project-create-ai-travel-agent/",
40819+
"redirect_document_id": false
4080540820
}
4080640821
]
4080740822
}

learn-pr/achievements.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4940,9 +4940,13 @@ achievements:
49404940
title: Create a new Node.js project and work with dependencies
49414941
summary: Use dependencies from the npm registry to develop Node.js applications faster. Learn how to manage dependencies for your project. This module uses JavaScript CommonJS in the Node.js runtime.
49424942
iconUrl: /training/achievements/create-nodejs-project-dependencies.svg
4943+
- uid: learn.azdo.explore-azure-devops-with-github.trophy
4944+
type: trophy
4945+
title: Explore Azure DevOps with GitHub to streamline your development process
4946+
summary: Learn how to use GitHub Actions, Azure DevOps, and Azure Pipelines to build, test, and deploy applications.
4947+
iconUrl: /training/achievements/explore-azure-devops-with-github.svg
49434948
- uid: learn.azure.manage-device-identity-ad-join.badge
49444949
type: badge
49454950
title: Manage device identity with Microsoft Entra join and Enterprise State Roaming
49464951
summary: Evaluate options to manage device identities in Microsoft Entra ID. Allow users to join devices in Microsoft Entra ID. Require devices to be marked as compliant. Enable Enterprise State Roaming.
49474952
iconUrl: /training/achievements/manage-device-identity-ad-join.svg
4948-

learn-pr/aspnetcore/blazor-improve-how-forms-work/1-introduction.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
unitType: introduction
66
title: Introduction
77
description: Introduction
8-
ms.date: 11/09/2023
8+
ms.date: 01/09/2025
99
author: csharpfritz
1010
ms.author: jefritz
1111
ms.manager: markl

learn-pr/aspnetcore/blazor-improve-how-forms-work/2-attach-csharp-code-dom-events-blazor-event-handlers.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
unitType: learning-content
66
title: "Attach C# code to DOM events with Blazor event handlers"
77
description: "Create handlers to process DOM events using C#"
8-
ms.date: 11/09/2023
8+
ms.date: 01/09/2025
99
author: csharpfritz
1010
ms.author: jefritz
1111
ms.manager: markl
@@ -20,7 +20,7 @@ quiz:
2020
choices:
2121
- content: "C# events"
2222
isCorrect: false
23-
explanation: "C# events do not properly transfer between components"
23+
explanation: "C# events don't properly transfer between components"
2424
- content: "EventCallback"
2525
isCorrect: true
2626
explanation: "EventCallbacks look like parameters on a component and can be specified on a Blazor page or another component"
@@ -34,7 +34,7 @@ quiz:
3434
explanation: "preventDefault prevents the default action in the DOM element from executing"
3535
- content: "return false"
3636
isCorrect: false
37-
explanation: "return false was a technique to stop an event in other JavaScript frameworks, but does not prevent the default action"
37+
explanation: "return false was a technique to stop an event in other JavaScript frameworks, but doesn't prevent the default action"
3838
- content: "throw new Exception()"
3939
isCorrect: false
4040
explanation: "Throwing an exception might stop the default action from executing, but it also raises an error that you might not want your application users to interact with"

learn-pr/aspnetcore/blazor-improve-how-forms-work/3-exercise-create-blazor-event-handler-onclick-events.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
unitType: Exercise
66
title: "Exercise - Create a Blazor event handler for onclick events"
77
description: "Handle the onclick event for an HTML form control using C#"
8-
ms.date: 11/09/2023
8+
ms.date: 01/09/2025
99
author: csharpfritz
1010
ms.author: jefritz
1111
ms.manager: markl

learn-pr/aspnetcore/blazor-improve-how-forms-work/4-take-advantage-power-blazor-forms.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
unitType: learning-content
66
title: "Take advantage of the power of Blazor forms"
77
description: "Learn how to use Blazor input elements with Blazor forms"
8-
ms.date: 11/09/2023
8+
ms.date: 01/09/2025
99
author: csharpfritz
1010
ms.author: jefritz
1111
ms.manager: markl
@@ -23,18 +23,18 @@ quiz:
2323
explanation: "This event executes when EditForm fields are submitted with invalid content"
2424
- content: "OnFailedValidation"
2525
isCorrect: false
26-
explanation: "This sounds like a good name for an event, but is not correct"
26+
explanation: "This sounds like a good name for an event, but isn't correct"
2727
- content: "OnFailedSubmit"
2828
isCorrect: false
29-
explanation: "'Failed' is not part of the event name that is raised"
29+
explanation: "'Failed' isn't part of the event name that is raised"
3030
- content: "An EditForm has the following features EXCEPT:"
3131
choices:
3232
- content: "Data Binding"
3333
isCorrect: false
3434
explanation: "The EditForm can be associated with an object and then acts like a view of the object for data entry purposes"
3535
- content: "Data cleansing"
3636
isCorrect: true
37-
explanation: "While you can edit the content of an EditForm, it does not perform data cleansing operations on its own"
37+
explanation: "While you can edit the content of an EditForm, it doesn't perform data cleansing operations on its own"
3838
- content: "Validation"
3939
isCorrect: false
4040
explanation: "An EditForm extensive and extensible validation capabilities"

learn-pr/aspnetcore/blazor-improve-how-forms-work/5-exercise-create-address-form-blazor-components.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
unitType: Exercise
66
title: "Exercise - Create an address form with Blazor components"
77
description: "Build an address form and connect it to a data model."
8-
ms.date: 11/09/2023
8+
ms.date: 01/09/2025
99
author: csharpfritz
1010
ms.author: jefritz
1111
ms.manager: markl

learn-pr/aspnetcore/blazor-improve-how-forms-work/6-validate-user-input-implicitly.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
unitType: learning-content
66
title: "Validate user input implicitly without writing validation code"
77
description: "Learn how to use Blazor's events to validate user input in forms."
8-
ms.date: 11/09/2023
8+
ms.date: 01/09/2025
99
author: csharpfritz
1010
ms.author: jefritz
1111
ms.manager: markl
@@ -20,18 +20,18 @@ quiz:
2020
choices:
2121
- content: "ValidationMessage"
2222
isCorrect: false
23-
explanation: "The ValidationMessage component will display the message for one component, not a summary"
23+
explanation: "The ValidationMessage component displays the message for one component, not a summary"
2424
- content: "DataAnnotationsValidator"
2525
isCorrect: false
26-
explanation: "This component activates the validations in the EditForm, but does not display a summary of validation message"
26+
explanation: "This component activates the validations in the EditForm, but doesn't display a summary of validation message"
2727
- content: "ValidationSummary"
2828
isCorrect: true
2929
explanation: "This component displays a summary of all the validation messages in a submitted form"
30-
- content: "Which of these is NOT a standard input elements that comes with Blazor?"
30+
- content: "Which of these choices is NOT a standard input element that comes with Blazor?"
3131
choices:
3232
- content: "Guid"
3333
isCorrect: true
34-
explanation: "Guid is not part of the standard input elements provided by Blazor"
34+
explanation: "Guid isn't part of the standard input elements provided by Blazor"
3535
- content: "CreditCard"
3636
isCorrect: false
3737
explanation: "CreditCard is one of the standard input elements provided by Blazor"

learn-pr/aspnetcore/blazor-improve-how-forms-work/7-exercise-add-server-client-side-data-validation-address-form.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
unitType: Exercise
66
title: "Exercise - Add server-side and client-side data validation to the address form "
77
description: "Use data annotations on a model to add custom validation to a Blazor EditForm component."
8-
ms.date: 11/09/2023
8+
ms.date: 01/09/2025
99
author: csharpfritz
1010
ms.author: jefritz
1111
ms.manager: markl

learn-pr/aspnetcore/blazor-improve-how-forms-work/8-summary.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
unitType: summary
66
title: "Summary"
77
description: "In this unit, you'll review what you've learned about forms in Blazor web apps."
8-
ms.date: 11/09/2023
8+
ms.date: 01/09/2025
99
author: csharpfritz
1010
ms.author: jefritz
1111
ms.manager: markl

0 commit comments

Comments
 (0)