File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -21,9 +21,13 @@ the command line.
21
21
8000
tr>22
22
## Code
23
23
24
- Each command is best run -p in a separate console/terminal instance run from the root
24
+ Each command is best run in a separate console/terminal instance run from the root
25
25
of the tutorial directory.
26
26
27
+ First run the ` recompile.sh ` script. This will run ` dotnet restore ` and build
28
+ each project which is required before they can be run. Alternatively or if you are
29
+ on windows cd into each project and run ` dotnet restore ` manually.
30
+
27
31
#### [ Tutorial one: "Hello World!"] ( http://www.rabbitmq.com/tutorial-one-dotnet.html )
28
32
29
33
dotnet run -p Receive
Original file line number Diff line number Diff line change 1
1
#! /bin/sh
2
2
3
3
for f in * /; do \
4
+ dotnet restore $f
4
5
dotnet build $f
5
6
done
You can’t perform that action at this time.
0 commit comments