10000 Merge pull request #105 from rabbitmq/rabbitmq-tutorials-104 · niponpant0ng/rabbitmq-tutorials@0765aea · GitHub
[go: up one dir, main page]

Skip to content

Commit 0765aea

Browse files
Merge pull request rabbitmq#105 from rabbitmq/rabbitmq-tutorials-104
dotnet: add instructions for running dotnet restore.
2 parents 083b214 + a428309 commit 0765aea

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
Original file line numberDiff line numberDiff 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
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