10000 dotnet: add instructions for running dotnet restore. · zerolugithub/rabbitmq-tutorials@a428309 · GitHub
[go: up one dir, main page]

Skip to content

Commit a428309

Browse files
committed
dotnet: add instructions for running dotnet restore.
Also added restore to the recompile.sh script
1 parent 083b214 commit a428309

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

dotnet/README.md

Lines changed: 5 additions & 1 deletion
23
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,13 @@ the command line.
2121

2222
## Code
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
2525
of 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

dotnet/recompile.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#!/bin/sh
22

33
for f in */; do \
4+
dotnet restore $f
45
dotnet build $f
56
done

0 commit comments

Comments
 (0)
0