You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: 04-Using-GitHub-Copilot-with-CSharp/README.md
+5-5
Original file line number
Diff line number
Diff line change
@@ -65,7 +65,7 @@ From here, you can click on files to navigate to them and you can ask follow up
65
65
66
66
### 🚀 Step 1: Run the projects
67
67
68
-
Now that we have context of what is in the project, let's run it and see it in action.
68
+
Now that we have context on what is in the project, let's run it and see it in action.
69
69
In order to run the BackEnd project, go to the "Run and Debug" panel, and select the "BackEnd" Project.
70
70
71
71

@@ -121,13 +121,13 @@ The selected C# code is part of an ASP.NET Core application using the minimal AP
121
121
-`/fix` to propose a fix for the problems in the selected code
122
122
-`/generate` to generate code to answer your question
123
123
124
-
Let's use the `/tests` command to generate tests to the code. Select lines 39-42, press `CTRL + I` to open the inline chat, and type `/tests` (or select the /tests slash command) to generate a new set of tests for this record.
124
+
Let's use the `/tests` command to generate tests for the code. Select lines 39-42, press `CTRL + I` to open the inline chat, and type `/tests` (or select the /tests slash command) to generate a new set of tests for this record.
125
125
126
126

127
127
128
-
At this point, GitHub Copilot will suggest a new class. You need to first press [Accept] to create the new file.
128
+
At this point, GitHub Copilot will suggest a new class. You need to first press [Accept] to create the new file.
129
129
130
-
A new class `ProgramTests.cs` was created and added to the project. This tests are using XUnit, however, you can ask to generate tests using another Unit Test library with a command like this one `/tests use MSTests for unit testing`.
130
+
A new class `ProgramTests.cs` was created and added to the project. These tests are using XUnit, however, you can ask to generate tests using another Unit Test library with a command like this one `/tests use MSTests for unit testing`.
131
131
132
132
***Important:** We are not going to use the test file in this project. You must delete the generated test file to continue.*
133
133
@@ -150,7 +150,7 @@ Navigate to the end of the file and ask Copilot to generate a new record that in
150
150
// create a new internal record named WeatherForecastByCity that request the following parameters: City, Date, TemperatureC, Summary
151
151
```
152
152
153
-
The generated code sould be similar to this one:
153
+
The generated code should be similar to this one:
154
154
155
155
```csharp
156
156
// create a new internal record named WeatherForecastByCity that request the following parameters: City, Date, TemperatureC, Summary
0 commit comments