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: README.md
+8-7
Original file line number
Diff line number
Diff line change
@@ -28,7 +28,7 @@ Snippets are extracted from small programs that include the snippet. Snippets ar
28
28
You build any .NET Core snippet or sample using the .NET Core CLI, which can be installed with [the .NET Core SDK](https://www.microsoft.com/net/download). Then, execute
29
29
these commands from the CLI in the directory of any sample:
30
30
31
-
```
31
+
```console
32
32
dotnet build
33
33
dotnet run
34
34
```
@@ -88,17 +88,18 @@ To create a sample:
88
88
Tobuildandrunyoursample:
89
89
90
90
91
-
1. GotothesamplefolderandBuildtocheckfor errors.
91
+
1. Gotothesamplefolderandbuildtocheckfor errors:
92
92
93
-
```
93
+
```console
94
94
dotnet build
95
95
```
96
-
2. Run!
96
+
2. Run your sample:
97
97
98
-
```
98
+
```console
99
99
dotnet run
100
100
```
101
101
102
-
3. Add a readme.md to the root directory of your sample.
103
-
- This should include a brief description of the code, and refer people to the article that references the sample.
102
+
3. Add a readme.md to the root directory of your sample.
103
+
104
+
This should include a brief description of the code, and refer people to the article that references the sample.
0 commit comments