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.
2121
2222## Code
2323
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
2525of the tutorial directory.
2626
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+
2731#### [ Tutorial one: "Hello World!"] ( http://www.rabbitmq.com/tutorial-one-dotnet.html )
2832
2933 dotnet run -p Receive
Original file line number Diff line number Diff line change 11#! /bin/sh
22
33for f in * /; do \
4+ dotnet restore $f
45 dotnet build $f
56done
You can’t perform that action at this time.
0 commit comments