Skip to content

Commit 153c521

Browse files
committed
code an instruction updates
1 parent 0e14b83 commit 153c521

File tree

6 files changed

+14
-10
lines changed

6 files changed

+14
-10
lines changed

DownloadableCodeProjects/az-2007-m2-explain-document/AccelerateDevGHCopilot/src/Library.ApplicationCore/Library.ApplicationCore.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net8.0</TargetFramework>
4+
<TargetFramework>net9.0</TargetFramework>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
77
</PropertyGroup>

DownloadableCodeProjects/az-2007-m2-explain-document/AccelerateDevGHCopilot/src/Library.Console/Library.Console.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
<PropertyGroup>
99
<OutputType>Exe</OutputType>
10-
<TargetFramework>net8.0</TargetFramework>
10+
<TargetFramework>net9.0</TargetFramework>
1111
<ImplicitUsings>enable</ImplicitUsings>
1212
<Nullable>enable</Nullable>
1313
</PropertyGroup>

DownloadableCodeProjects/az-2007-m2-explain-document/AccelerateDevGHCopilot/src/Library.Infrastructure/Library.Infrastructure.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</ItemGroup>
1010

1111
<PropertyGroup>
12-
<TargetFramework>net8.0</TargetFramework>
12+
<TargetFramework>net9.0</TargetFramework>
1313
<ImplicitUsings>enable</ImplicitUsings>
1414
<Nullable>enable</Nullable>
1515
</PropertyGroup>

DownloadableCodeProjects/az-2007-m2-explain-document/AccelerateDevGHCopilot/tests/UnitTests/UnitTests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net8.0</TargetFramework>
4+
<TargetFramework>net9.0</TargetFramework>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
77

Instructions/Labs/LAB_AK_01_examine_settings_interface.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ Use the following steps to complete this section of the exercise:
8787

8888
- **GitHub.Copilot.Enable**: Enable or disable Copilot completions for specified languages.
8989

90-
The term *languages* refers to programming languages, but accommodates other file formats as well. The languages are specified using a list of languages and a value of **true** or **false** to enable or disable GitHub Copilot for each language. By default, GitHub Copilot is enabled for all languages. This setting is specified with the wildcard character `*` on the first row and the value **true**. The subsequent rows specify languages for which GitHub Copilot is enabled or disabled. For example, GitHub Copilot is enabled for **C#**, **JavaScript**, and **Python** and disabled for **Plaintext** and **Markdown**.
90+
The term *languages* refers to programming languages, but accommodates other file formats as well. The languages are specified using a list of languages and a value of **true** or **false** to enable or disable GitHub Copilot for each language. By default, GitHub Copilot is enabled for all languages. This setting is specified with the wildcard character **\*** on the first row and the value **true**. The subsequent rows specify languages for which GitHub Copilot is enabled or disabled. For example, GitHub Copilot is enabled for **C#**, **JavaScript**, and **Python** and disabled for **Plaintext** and **Markdown**.
9191

9292
![Screenshot showing the enable languages setting open in the editor.](./Media/m01-github-copilot-extension-settings-enable-languages.png)
9393

@@ -121,6 +121,8 @@ Use the following steps to complete this section of the exercise:
121121

122122
We recommend keeping the default settings during this training. This helps to ensure that you have the expected experience when working on the modules in this learning path. When you have completed the training, you can experiment with these settings to customize your experience with GitHub Copilot and Copilot Chat.
123123

124+
1. Close the settings tab.
125+
124126
## Explore the GitHub Copilot user interface in Visual Studio Code
125127

126128
Visual Studio Code seamlessly integrates GitHub Copilot's AI features into your development environment.
@@ -260,7 +262,7 @@ The Inline Chat interface is designed for code interactions directly within the
260262
1. Open the Chat menu and notice the following:
261263
262264
- The Editor Inline Chat menu option is now enabled.
263-
- You can open an Inline Chat session using the **Ctrl+I** keyboard shortcut.
265+
- The **Ctrl+I** keyboard shortcut can be used to open an Inline Chat session.
264266
265267
1. In the code editor, select the following code:
266268
@@ -301,7 +303,7 @@ The Inline Chat interface is designed for code interactions directly within the
301303
302304
- Inline Chat generates a suggestion by updating the code directly.
303305
- You can select **Accept** to implement the suggested update, select **Close** to reject the selected update, or select **Rerun** to generate a new suggestion.
304-
- There is also a **More Action** menu that provides additional options for managing the Inline Chat session, and you can rate the suggestion as "helpful" or "unhelpful".
306+
- There is also a **More Actions** menu that provides additional options for managing the Inline Chat session, and you can rate the suggestion as "helpful" or "unhelpful".
305307
306308
1. To accept the suggested code update, select **Accept**.
307309
@@ -376,7 +378,7 @@ GitHub Copilot provides code completion suggestions based on the context of the
376378
377379
1. To generate a code completion suggestion, press **Enter**.
378380
379-
GitHub Copilot generates a code completion suggestion based on the context of the code in the editor. In this case, GitHub Copilot suggests a new Console.WriteLine statement that displays an age for GitHub Copilot.
381+
GitHub Copilot generates a code completion suggestion based on the context of the code in the editor. In this case, GitHub Copilot suggests a new Console.WriteLine statement that's related to generating equations .
380382
381383
![Screenshot showing a code completion suggestion in the editor.](./Media/m01-github-copilot-code-completion-1.png)
382384

Instructions/Labs/LAB_AK_02_analyze_document_code.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,11 @@ Your colleague has developed an initial version of the library application and h
3838

3939
Use the following steps to set up the library application:
4040

41-
1. To download a zip file containing the library application, select 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)
41+
1. Open a browser window in your lab environment.
4242

43-
The zip file is named AZ2007LabAppM2.zip.
43+
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)
44+
45+
The zip file named AZ2007LabAppM2.zip will be downloaded to your lab environment.
4446

4547
1. Extract the files from the **AZ2007LabAppM2.zip** file.
4648

0 commit comments

Comments
 (0)