Skip to content

Commit a61e3e1

Browse files
cleanup first exercise and
1 parent fffc8fc commit a61e3e1

File tree

9 files changed

+25
-11
lines changed

9 files changed

+25
-11
lines changed
+14-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,17 @@
11
{
22
// Name this configuration
3-
"name": "Introduction to Copilot"
3+
"name": "Introduction to Copilot",
4+
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
5+
"image": "mcr.microsoft.com/devcontainers/dotnet:9.0",
6+
"hostRequirements": {
7+
"cpus": 2
8+
},
9+
"customizations": {
10+
"vscode": {
11+
"extensions": [
12+
"github.copilot",
13+
"ms-dotnettools.csdevkit"
14+
]
15+
}
16+
}
417
}

.vscode/settings.json

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"dotnet.defaultSolution": "code/MasteringCopilot.sln"
3+
}

03-Introduction-to-GitHub-Copilot/steps/1-copilot-extension.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,13 @@ Using Copilot inside a Codespace shows just how easy it is to get up and running
1515
1616
### ⌨️ Activity: Enable Copilot inside a Codespace
1717

18+
[![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://codespaces.new/microsoft/mastering-github-copilot-for-dotnet-csharp-developers?devcontainer_path=.devcontainer%2Fintroduction%2Fdevcontainer.json)
19+
1820
**We recommend opening another browser tab to work through the following activities so you can keep these instructions open for reference.**
1921

2022
Before you open up a codespace on a repository, you can create a development container and define specific extensions or configurations that will be used or installed in your codespace. Let's create this development container and add copilot to the list of extensions.
2123

22-
1. In the body of the **.devcontainer/introduction/devcontainer.json** file, add the following content:
24+
1. Note in the body of the **.devcontainer/introduction/devcontainer.json** file, the following content:
2325
```
2426
{
2527
// Name this configuration
@@ -34,10 +36,8 @@ Before you open up a codespace on a repository, you can create a development con
3436
}
3537
}
3638
```
37-
1. Select the option to **Commit directly to the `main` branch**, and then click the **Commit** button.
38-
1. Reload the codespace
3939

40-
If you run into issues you can create a new codespace:
40+
If you run into issues at any time you can create a new codespace:
4141

4242
1. Navigate back to the home page of your repository by clicking the **Code** tab located at the top left of the screen.
4343
1. Click the **Code** button located in the middle of the page.

03-Introduction-to-GitHub-Copilot/steps/2-skills-dotnet.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Let's try this out utilizing C# for Copilot.
1212
> If you closed the Codespace from above, please open it back up or create a new Codespace.
1313
1414
1. Create a new .NET project by using the `.NET: New Project...` command and selecting `Console App`.
15-
1. Select a folder and name the project **Skills**.
15+
1. Select the **code** folder and name the project **Skills**.
1616
1. Open `Program.cs`
1717
1. Verify your new file looks like:
1818
![VS code with a new Program.cs](./img/2-skills-dotnet-0.png)

03-Introduction-to-GitHub-Copilot/steps/4-copilot-comment.md

+1-3
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,4 @@ Now lets see how you can leverage comments to generate Copilot suggestions!
4747

4848
```
4949
git push
50-
```
51-
52-
**Wait about 60 seconds then refresh your repository landing page for the next step.**
50+
```

04-Using-GitHub-Copilot-with-CSharp/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,13 @@ By the end of this module, you'll acquire the skills to be able to:
3939

4040
[![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://codespaces.new/github/dotnet-codespaces)
4141

42-
The "**GitHub Codespaces ♥️ .NET 8**" repository builds a Weather API using Minimal APIs, opens Swagger so you can call and test the API, and displays the data in a web application using Blazor with .NET 8.
42+
The "**GitHub Codespaces ♥️ .NET**" repository builds a Weather API using Minimal APIs, opens Swagger so you can call and test the API, and displays the data in a web application using Blazor with .NET.
4343

4444

4545
We will review the steps to update the Weather BackEnd App by adding a new endpoint that requests a specific location and returns the weather forecast for that location.
4646

4747

48-
### 🗒️ Step 1: Get familiarized with the "GitHub Codespaces ♥️ .NET 8" repository
48+
### 🗒️ Step 1: Get familiarized with the "GitHub Codespaces ♥️ .NET" repository
4949

5050
Once you open the repository in Codespaces, you will find a new browser window with a fully functional Codespace. Everything in this repository is contained within this one Codespace. In example, in the explorer panel, we can see the main code for the BackEnd and the FrontEnd project.
5151

0 commit comments

Comments
 (0)