Skip to content

Commit 3167fe4

Browse files
tfsjohancmendible
authored andcommitted
Explain in more detailed that the path needs to use / in non-Windows environment (like Codespaces)
1 parent d7d6da2 commit 3167fe4

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

exercisefiles/dotnet/README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,16 @@ dotnet test
2121

2222
To run the app, open a terminal in the `dotnet` folder and run:
2323

24+
**Windows environments**
2425
``` bash
2526
dotnet run --project .\MinimalAPI\MinimalAPI.csproj
2627
```
2728

29+
**Codespaces, Linux & Unix environments**
30+
``` bash
31+
dotnet run --project ./MinimalAPI/MinimalAPI.csproj
32+
```
33+
2834
### Exercise 1: Introduction
2935

3036
- Inside `MinimalAPI\Program.cs` add a new Hello World endpoint at `/` that returns a `Hello World!` string. You can test the Copilot inline feature by pressing `ctrl + i`. Then write in the text box the desired behaviour.
@@ -41,7 +47,7 @@ A total of 1 test files matched the specified pattern.
4147
Passed! - Failed: 0, Passed: 1, Skipped: 0, Total: 1, Duration: < 1 ms - MinimalAPI.Tests.dll
4248
```
4349

44-
### Exercise 2: Building new functionlities
50+
### Exercise 2: Building new functionalities
4551

4652

4753
Inside `MinimalAPI\Program.cs` add the following endpoints using the help of Copilot:

0 commit comments

Comments
 (0)