Skip to content

Commit 3046e3d

Browse files
committed
Merge branch 'rename-update-KenMAG' of https://github.com/KenMAG/learn-pr into rename-update-KenMAG
2 parents 11b81c0 + fc697d1 commit 3046e3d

69 files changed

Lines changed: 463 additions & 276 deletions

File tree

Some content is hidden

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

learn-pr/device-partner-university/hotpatch-updates/index.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ metadata:
1111
ms.service: windows-11
1212
ms.custom: CW051525-3
1313
summary: >
14-
This story introduces how Windows hotpatching streamlines the update process by applying security patches without requiring a reboot. It explains how you can configure, deploy, and manage hotpatch updates to keep devices secure with minimal disruption.
14+
This module introduces how Windows hotpatching streamlines the update process by applying security patches without requiring a restart. It explains how you can configure, deploy, and manage hotpatch updates to keep devices secure faster and with minimal disruption.
1515
abstract: |
1616
By the end of this module, you'll be able to:
1717
- Configure a Windows quality update policy to enable hotpatching through Windows Autopatch
Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,17 @@
11
### YamlMime:ModuleUnit
22
uid: learn.languages.dotnet-introduction.build-your-first-app
3-
title: Build your first app by using Try .NET
3+
title: Build your first app by using .NET
44
metadata:
55
title: Build your first app by using Try .NET
66
description: 'Write a C# program by using a web-based environment. See how various parts of .NET work together.'
7-
ms.date: 10/07/2024
8-
author: camsoper
9-
ms.author: casoper
10-
ms.manager: markl
7+
ms.date: 12/3/2025
8+
author: buzahid
9+
ms.author: buzahid
10+
ms.manager: gmalcolm
1111
ms.topic: unit
1212
ms.custom:
1313
- devx-track-dotnet
1414
durationInMinutes: 6
1515
azureSandbox: false
16-
interactive: csharp
1716
content: |
1817
[!include[](includes/4-build-your-first-app.md)]

learn-pr/language/dotnet-introduction/includes/2-what-is-dotnet.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ Developers who prefer a command-line workflow might use a combination of *Visual
6565

6666
Furthermore, you can choose from numerous first-party and third-party tools for many advanced .NET use cases. Options include code profilers, unit test runners, and code coverage analyzers.
6767

68-
You can find other .NET tools for other scenarios. For example, later in this module you work with *Try .NET*. You use this browser-based interface to write simple applications to help you learn the C# programming language.
68+
You can find other .NET tools for other scenarios. For example, there are C# code editors available to use directly in the browser. Browser editors provide a lightweight environment for writing, running, and testing C# code without needing to install any software on your local computer.
6969

7070
### Find solutions and answers in documentation and tutorials
7171

learn-pr/language/dotnet-introduction/includes/4-build-your-first-app.md

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,16 @@ For simplicity, we're going to rewrite the "Hello World" application, but this t
44

55
## Build a basic app by using C#
66

7-
Earlier, you learned that **Try .NET** provides an easy way to experiment with C# and .NET. You can use Try .NET without installing any software on your local computer.
7+
Browser code editors provide an easy way to experiment with C# and .NET. You can use this [C# Code Editor](https://microsoftlearning.github.io/c-sharp-minor?azure-portal=true) without installing any software on your local computer.
88

99
> [!Note]
10-
> In this module, you use a browser built-in version of Try .NET. If you want to experiment with the application after you finish this exercise, go to `https://try.dot.net`. Try .NET is a great way to try out small code examples without installing anything on your local computer.
10+
> In this module, you use a browser-based code editor. This editor is a great way to try out small code examples without installing anything on your local computer.
1111
1212
### Step 1 - Write the code
1313

14-
In the .NET editor, on the right side of this web page, type the following code sample. Or copy the code sample and then paste it in the .NET editor.
14+
Open the [C# Code Editor](https://microsoftlearning.github.io/c-sharp-minor?azure-portal=true) in a new browser window or tab. You can position the browser windows side-by-side so that you can refer to these instructions while you work in the C# Code Editor.
15+
16+
Type the following code sample, or copy the code sample and then paste it, into the C# Code Editor:
1517

1618
```csharp-interactive
1719
Console.WriteLine("Hello world!");
@@ -21,14 +23,14 @@ As you learned in the prerequisite module, "Hello world" is a simple and canonic
2123

2224
### Step 2 - Run the code
2325

24-
Select the green **Run** button in the .NET editor. If the entered C# code is correct, the words "Hello World!" appear in the **Output** pane.
26+
Select the ▶️ Run button in the C# Code Editor. If the entered C# code is correct, the words "Hello World!" appear in the **Output** pane.
2527

2628
> [!IMPORTANT]
27-
> If you see any errors while running this code, copy the code and paste it in the .NET editor, then try running the code again.
29+
> If you see any errors while running this code, copy the code and paste it in the C# Code Editor, then try running the code again.
2830
2931
### What happens to the code you write?
3032

31-
The browser version of Try .NET hides some of the code you see when you build a full application by using Try .NET, Visual Studio 2022, or Visual Studio Code.
33+
The C# Code Editor hides some of the code you see when you build a full application using Visual Studio, or Visual Studio Code.
3234

3335
When you include the hidden code, here's how the example looks:
3436

@@ -44,7 +46,7 @@ public class Program
4446
}
4547
```
4648

47-
The browser version of Try .NET uses the same steps you learned about earlier. The only difference is that some of the code is hidden to simplify the experience.
49+
The browser-based C# Code Editor uses the same steps you learned about earlier. The only difference is that some of the code is hidden to simplify the experience.
4850

4951
Focusing on that expanded view of the code, you can see a series of curly braces `{ }`. C# uses a pair of curly braces to define a *code block*. Different kinds of code blocks are used for different purposes.
5052

learn-pr/language/dotnet-introduction/index.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ metadata:
44
title: Introduction to .NET
55
description: Start learning about .NET. Understand what .NET is and how it works. Quickly build a small app in a web-based .NET environment.
66
ms.date: 10/07/2024
7-
author: camsoper
8-
ms.author: casoper
7+
author: wwlpublish
8+
ms.author: buzahid
99
manager: coxford
1010
ms.topic: module
1111
ms.service: dotnet

learn-pr/paths/build-dotnet-applications-csharp/index.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ metadata:
44
title: 'Build .NET applications with C#'
55
description: .NET is a free, cross-platform, open source developer platform for building many different types of applications. With .NET, you can use multiple languages, editors, and libraries to build for web, mobile, desktop, games, and IoT.
66
ms.date: 10/14/2024
7-
author: billwagner
8-
ms.author: wiwagn
7+
author: wwlpublish
8+
ms.author: buzahid
99
ms.topic: learning-path
1010
title: Build .NET applications with C#
1111
summary: |

learn-pr/wwl-data-ai/ai-agent-fundamentals/1-introduction.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ metadata:
66
description: Get ready to explore AI agents.
77
author: ivorb
88
ms.author: berryivor
9-
ms.date: 05/23/2025
9+
ms.date: 12/02/2025
1010
ms.topic: unit
1111
ms.collection:
1212
- wwl-ai-copilot

learn-pr/wwl-data-ai/ai-agent-fundamentals/2-what-are-agents.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ metadata:
66
description: AI agents have the potential to radically change how we accomplish tasks - but what are they?
77
author: ivorb
88
ms.author: berryivor
9-
ms.date: 05/23/2025
9+
ms.date: 12/02/2025
1010
ms.topic: unit
1111
ms.collection:
1212
- wwl-ai-copilot

learn-pr/wwl-data-ai/ai-agent-fundamentals/3-agent-development.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ metadata:
66
description: So you want to build an agent? Let's explore your options?
77
author: ivorb
88
ms.author: berryivor
9-
ms.date: 09/29/2025
9+
ms.date: 12/02/2025
1010
ms.topic: unit
1111
ms.collection:
1212
- wwl-ai-copilot

learn-pr/wwl-data-ai/ai-agent-fundamentals/4-azure-ai-agent-service.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ metadata:
66
description: A high-level overview of Microsoft Foundry Agent Service.
77
author: ivorb
88
ms.author: berryivor
9-
ms.date: 05/23/2025
9+
ms.date: 12/02/2025
1010
ms.topic: unit
1111
ms.collection:
1212
- wwl-ai-copilot

0 commit comments

Comments
 (0)