Skip to content

Commit 82c5fbf

Browse files
committed
updated Before you start sections
1 parent a30a0bb commit 82c5fbf

5 files changed

Lines changed: 99 additions & 35 deletions

Instructions/Labs/LAB_AK_01_examine_settings_interface.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,25 @@ This exercise should take approximately **25** minutes to complete.
1616

1717
Your lab environment must include the following: Git 2.48 or later, .NET SDK 9.0 or later, Visual Studio Code with the C# Dev Kit extension, and access to a GitHub account with GitHub Copilot enabled.
1818

19+
If you're using a local PC as a lab environment for this exercise:
20+
1921
- For help configuring your local PC as your lab environment, open the following link in a browser: <a href="https://go.microsoft.com/fwlink/?linkid=2320147" target="_blank">Configure your lab environment resources</a>.
2022

21-
- For help enabling your GitHub Copilot subscription in Visual Studio Code (required for the hosted lab environment), open the following link in a browser: <a href="https://go.microsoft.com/fwlink/?linkid=2320158" target="_blank">Enable GitHub Copilot within Visual Studio Code</a>.
23+
- For help enabling your GitHub Copilot subscription in Visual Studio Code, open the following link in a browser: <a href="https://go.microsoft.com/fwlink/?linkid=2320158" target="_blank">Enable GitHub Copilot within Visual Studio Code</a>.
24+
25+
If you're using a hosted lab environment for this exercise:
26+
27+
- For help enabling your GitHub Copilot subscription in Visual Studio Code, paste the following URL into a browser's site navigation bar: <a href="https://go.microsoft.com/fwlink/?linkid=2320158" target="_blank">Enable GitHub Copilot within Visual Studio Code</a>.
28+
29+
- Open a command terminal and then run the following commands:
30+
31+
To ensure that Visual Studio Code is configured to use the correct version of .NET, run the following command:
32+
33+
```bash
34+
35+
dotnet nuget add source https://api.nuget.org/v3/index.json -n nuget.org
36+
37+
```
2238

2339
## Exercise scenario
2440

Instructions/Labs/LAB_AK_02_analyze_document_code.md

Lines changed: 17 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,25 @@ This exercise should take approximately **20** minutes to complete.
1616

1717
Your lab environment must include the following: Git 2.48 or later, .NET SDK 9.0 or later, Visual Studio Code with the C# Dev Kit extension, and access to a GitHub account with GitHub Copilot enabled.
1818

19+
If you're using a local PC as a lab environment for this exercise:
20+
1921
- For help configuring your local PC as your lab environment, open the following link in a browser: <a href="https://go.microsoft.com/fwlink/?linkid=2320147" target="_blank">Configure your lab environment resources</a>.
2022

21-
- For help enabling your GitHub Copilot subscription in Visual Studio Code (required for the hosted lab environment), open the following link in a browser: <a href="https://go.microsoft.com/fwlink/?linkid=2320158" target="_blank">Enable GitHub Copilot within Visual Studio Code</a>.
23+
- For help enabling your GitHub Copilot subscription in Visual Studio Code, open the following link in a browser: <a href="https://go.microsoft.com/fwlink/?linkid=2320158" target="_blank">Enable GitHub Copilot within Visual Studio Code</a>.
24+
25+
If you're using a hosted lab environment for this exercise:
26+
27+
- For help enabling your GitHub Copilot subscription in Visual Studio Code, paste the following URL into a browser's site navigation bar: <a href="https://go.microsoft.com/fwlink/?linkid=2320158" target="_blank">Enable GitHub Copilot within Visual Studio Code</a>.
28+
29+
- Open a command terminal and then run the following commands:
30+
31+
To ensure that Visual Studio Code is configured to use the correct version of .NET, run the following command:
32+
33+
```bash
34+
35+
dotnet nuget add source https://api.nuget.org/v3/index.json -n nuget.org
36+
37+
```
2238

2339
## Exercise scenario
2440

@@ -38,12 +54,6 @@ Your colleague has developed an initial version of the library application and h
3854

3955
Use the following steps to set up the library application:
4056

41-
1. Open a command terminal and then run the following command:
42-
43-
```bash
44-
dotnet nuget add source https://api.nuget.org/v3/index.json -n nuget.org
45-
```
46-
4757
1. Open a browser window in your lab environment.
4858

4959
1. To download a zip file containing the library application, navigate to the following URL: [GitHub Copilot lab - Analyze and document code](https://github.com/MicrosoftLearning/mslearn-github-copilot-dev/raw/refs/heads/main/DownloadableCodeProjects/Downloads/AZ2007LabAppM2.zip)

Instructions/Labs/LAB_AK_03_develop_code_features.md

Lines changed: 31 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,39 @@ This exercise should take approximately **30** minutes to complete.
1616

1717
Your lab environment must include the following: Git 2.48 or later, .NET SDK 9.0 or later, Visual Studio Code with the C# Dev Kit extension, and access to a GitHub account with GitHub Copilot enabled.
1818

19+
If you're using a local PC as a lab environment for this exercise:
20+
1921
- For help configuring your local PC as your lab environment, open the following link in a browser: <a href="https://go.microsoft.com/fwlink/?linkid=2320147" target="_blank">Configure your lab environment resources</a>.
2022

21-
- For help enabling your GitHub Copilot subscription in Visual Studio Code (required for the hosted lab environment), open the following link in a browser: <a href="https://go.microsoft.com/fwlink/?linkid=2320158" target="_blank">Enable GitHub Copilot within Visual Studio Code</a>.
23+
- For help enabling your GitHub Copilot subscription in Visual Studio Code, open the following link in a browser: <a href="https://go.microsoft.com/fwlink/?linkid=2320158" target="_blank">Enable GitHub Copilot within Visual Studio Code</a>.
24+
25+
If you're using a hosted lab environment for this exercise:
26+
27+
- For help enabling your GitHub Copilot subscription in Visual Studio Code, paste the following URL into a browser's site navigation bar: <a href="https://go.microsoft.com/fwlink/?linkid=2320158" target="_blank">Enable GitHub Copilot within Visual Studio Code</a>.
28+
29+
- Open a command terminal and then run the following commands:
30+
31+
To ensure that Visual Studio Code is configured to use the correct version of .NET, run the following command:
32+
33+
```bash
34+
35+
dotnet nuget add source https://api.nuget.org/v3/index.json -n nuget.org
36+
37+
```
38+
39+
To ensure that Git is configured to use your name and email address, update the following commands with your information, and then run the commands:
40+
41+
```bash
42+
43+
git config --global user.name "John Doe"
44+
45+
```
46+
47+
```bash
48+
49+
git config --global user.email johndoe@example.com
50+
51+
```
2252

2353
## Exercise scenario
2454

@@ -55,30 +85,6 @@ You need to download the existing application, extract the code files, and then
5585

5686
Use the following steps to set up the library application:
5787

58-
1. Open a command terminal and then run the following commands:
59-
60-
To ensure that Visual Studio Code is configured to use the correct version of .NET, run the following command:
61-
62-
```bash
63-
64-
dotnet nuget add source https://api.nuget.org/v3/index.json -n nuget.org
65-
66-
```
67-
68-
To ensure that Git is configured to use your name and email address, update the following commands with your information, and then run the commands:
69-
70-
```bash
71-
72-
git config --global user.name "John Doe"
73-
74-
```
75-
76-
```bash
77-
78-
git config --global user.email johndoe@example.com
79-
80-
```
81-
8288
1. Open a browser window in your lab environment.
8389

8490
1. To download a zip file containing the library application, navigate to the following URL: [GitHub Copilot lab - develop code features](https://github.com/MicrosoftLearning/mslearn-github-copilot-dev/raw/refs/heads/main/DownloadableCodeProjects/Downloads/AZ2007LabAppM3.zip)

Instructions/Labs/LAB_AK_04_develop_unit_tests_xunit.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,25 @@ This exercise should take approximately **25** minutes to complete.
1616

1717
Your lab environment must include the following: Git 2.48 or later, .NET SDK 9.0 or later, Visual Studio Code with the C# Dev Kit extension, and access to a GitHub account with GitHub Copilot enabled.
1818

19+
If you're using a local PC as a lab environment for this exercise:
20+
1921
- For help configuring your local PC as your lab environment, open the following link in a browser: <a href="https://go.microsoft.com/fwlink/?linkid=2320147" target="_blank">Configure your lab environment resources</a>.
2022

21-
- For help enabling your GitHub Copilot subscription in Visual Studio Code (required for the hosted lab environment), open the following link in a browser: <a href="https://go.microsoft.com/fwlink/?linkid=2320158" target="_blank">Enable GitHub Copilot within Visual Studio Code</a>.
23+
- For help enabling your GitHub Copilot subscription in Visual Studio Code, open the following link in a browser: <a href="https://go.microsoft.com/fwlink/?linkid=2320158" target="_blank">Enable GitHub Copilot within Visual Studio Code</a>.
24+
25+
If you're using a hosted lab environment for this exercise:
26+
27+
- For help enabling your GitHub Copilot subscription in Visual Studio Code, paste the following URL into a browser's site navigation bar: <a href="https://go.microsoft.com/fwlink/?linkid=2320158" target="_blank">Enable GitHub Copilot within Visual Studio Code</a>.
28+
29+
- Open a command terminal and then run the following commands:
30+
31+
To ensure that Visual Studio Code is configured to use the correct version of .NET, run the following command:
32+
33+
```bash
34+
35+
dotnet nuget add source https://api.nuget.org/v3/index.json -n nuget.org
36+
37+
```
2238

2339
## Exercise scenario
2440

Instructions/Labs/LAB_AK_05_refactor_improve_existing_code.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,25 @@ This exercise should take approximately **30** minutes to complete.
1616

1717
Your lab environment must include the following: Git 2.48 or later, .NET SDK 9.0 or later, Visual Studio Code with the C# Dev Kit extension, and access to a GitHub account with GitHub Copilot enabled.
1818

19+
If you're using a local PC as a lab environment for this exercise:
20+
1921
- For help configuring your local PC as your lab environment, open the following link in a browser: <a href="https://go.microsoft.com/fwlink/?linkid=2320147" target="_blank">Configure your lab environment resources</a>.
2022

21-
- For help enabling your GitHub Copilot subscription in Visual Studio Code (required for the hosted lab environment), open the following link in a browser: <a href="https://go.microsoft.com/fwlink/?linkid=2320158" target="_blank">Enable GitHub Copilot within Visual Studio Code</a>.
23+
- For help enabling your GitHub Copilot subscription in Visual Studio Code, open the following link in a browser: <a href="https://go.microsoft.com/fwlink/?linkid=2320158" target="_blank">Enable GitHub Copilot within Visual Studio Code</a>.
24+
25+
If you're using a hosted lab environment for this exercise:
26+
27+
- For help enabling your GitHub Copilot subscription in Visual Studio Code, paste the following URL into a browser's site navigation bar: <a href="https://go.microsoft.com/fwlink/?linkid=2320158" target="_blank">Enable GitHub Copilot within Visual Studio Code</a>.
28+
29+
- Open a command terminal and then run the following commands:
30+
31+
To ensure that Visual Studio Code is configured to use the correct version of .NET, run the following command:
32+
33+
```bash
34+
35+
dotnet nuget add source https://api.nuget.org/v3/index.json -n nuget.org
36+
37+
```
2238

2339
## Exercise scenario
2440

0 commit comments

Comments
 (0)