Skip to content

Commit 4fe3040

Browse files
Rename lab parts to use two-digit numbering (part0 → part00, etc.)
Co-authored-by: jamesmontemagno <1676321+jamesmontemagno@users.noreply.github.com>
1 parent 44adc10 commit 4fe3040

12 files changed

Lines changed: 31 additions & 31 deletions

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -23,16 +23,16 @@ You'll use GitHub Copilot's various features to enhance and complete this applic
2323
## Lab Parts
2424

2525
0. [Setup](lab/setup.md)
26-
1. [Exploring the Codebase with GitHub Copilot Chat](lab/part0-exploring-codebase.md)
27-
2. [Code Completion with Ghost Text](lab/part1-code-completion.md)
28-
3. [Enhancing UI with Inline Chat](lab/part2-enhancing-ui.md)
29-
4. [Referencing Code Files in Chat](lab/part3-referencing-files.md)
30-
5. [Using Custom Instructions](lab/part4-custom-instructions.md)
31-
6. [Implementing Features with Copilot Agent](lab/part5-implementing-features.md)
32-
7. [Using Copilot Vision](lab/part6-copilot-vision.md)
33-
8. [Debugging with Copilot](lab/part7-debugging-with-copilot.md)
34-
9. [Commit Summary Descriptions](lab/part8-commit-summary-descriptions.md)
35-
10. [MCP Servers](lab/part9-mcp.md)
26+
1. [Exploring the Codebase with GitHub Copilot Chat](lab/part00-exploring-codebase.md)
27+
2. [Code Completion with Ghost Text](lab/part01-code-completion.md)
28+
3. [Enhancing UI with Inline Chat](lab/part02-enhancing-ui.md)
29+
4. [Referencing Code Files in Chat](lab/part03-referencing-files.md)
30+
5. [Using Custom Instructions](lab/part04-custom-instructions.md)
31+
6. [Implementing Features with Copilot Agent](lab/part05-implementing-features.md)
32+
7. [Using Copilot Vision](lab/part06-copilot-vision.md)
33+
8. [Debugging with Copilot](lab/part07-debugging-with-copilot.md)
34+
9. [Commit Summary Descriptions](lab/part08-commit-summary-descriptions.md)
35+
10. [MCP Servers](lab/part09-mcp.md)
3636
11. [Planning Mode in Agent](lab/part10-planning-mode.md)
3737
12. [Reusable Prompt Files](lab/part11-reusable-prompts.md)
3838
13. [Delegate to the Cloud](lab/part12-delegate-to-cloud.md)
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Part 0: Exploring the Codebase with GitHub Copilot Chat
1+
# Part 00: Exploring the Codebase with GitHub Copilot Chat
22

33
GitHub Copilot Chat allows you to ask questions about your code and get intelligent responses.
44

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Part 1: Code Completion with Ghost Text
1+
# Part 01: Code Completion with Ghost Text
22

33
In this section, you'll use GitHub Copilot's code completion to implement API endpoints.
44

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Part 2: Enhancing UI with Inline Chat
1+
# Part 02: Enhancing UI with Inline Chat
22

33
Now, you'll improve the loading experience using Copilot's inline chat.
44

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Part 3: Referencing Code Files in Chat
1+
# Part 03: Referencing Code Files in Chat
22

33
In this section, you'll learn how to reference existing code files in your chat conversations.
44

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Part 4: Using Custom Instructions
1+
# Part 04: Using Custom Instructions
22

33
There are always key pieces of information anyone generating code for your codebase needs to know - the technologies in use, coding standards to follow, project structure, etc. Since context is so important, as we've discussed, we likely want to ensure Copilot always has this information as well. Fortunately, we can provide this overview through the use of Copilot instructions.
44

@@ -42,7 +42,7 @@ Here are some guidelines to consider when creating a Copilot instructions file:
4242

4343
![New chat](./images/5-new-edits.png)
4444

45-
1. [] Go back to Copilot Chat and re-run the prompt from Part 3, you can do this by pressing the up key. or
45+
1. [] Go back to Copilot Chat and re-run the prompt from Part 03, you can do this by pressing the up key. or
4646
1. [] Ask: `How would I implement getting and visualizing the products in a table using the code in #ProductService and the css required.`
4747
1. [] Review the code suggestion but don't implement it yet.
4848
1. [] Notice how the responses now incorporate your custom instructions.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Part 5: Implementing Features with Copilot Agent
1+
# Part 05: Implementing Features with Copilot Agent
22

33
Previously we utilized Copilot chat, which is great for working with an individual file or asking questions about our code. However, many updates necessitate changes to multiple files throughout a codebase. Even a seemingly basic change to a webpage likely requires updating HTML, CSS, Razor, and C# files. Copilot Agent allows you to modify multiple files at once across your project, self heals, and can run commands if granted permission like installing NuGet packages.
44

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Part 6: Using Copilot Vision
1+
# Part 06: Using Copilot Vision
22

33
In this section, you'll use Copilot Vision. You can share screenshots of errors and Copilot will interpret the image and resolve the issue. Or share mockups of new designs, and Vision will help you bring them to life. Let's update our design based on a photo our design gave us.
44

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Part 7: Debugging with Copilot
1+
# Part 07: Debugging with Copilot
22

33
In this section, you'll learn how to use Copilot to debug an exception in your application.
44

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Part 8: Commit Summary Descriptions
1+
# Part 08: Commit Summary Descriptions
22

33
In this section, you'll learn how to use GitHub Copilot to generate commit messages and customize them.
44

0 commit comments

Comments
 (0)