@@ -28,36 +28,36 @@ First run the `recompile.sh` script. This will run `dotnet restore` and build
28
28
each project which is required before they can be run. Alternatively or if you are
29
29
on windows cd into each project and run ` dotnet restore ` manually.
30
30
31
- #### [ Tutorial one: "Hello World!"] ( https://www.rabbitmq.com/tutorial-one-dotnet.html )
31
+ #### [ Tutorial one: "Hello World!"] ( https://www.rabbitmq.com/tutorials/ tutorial-one-dotnet.html )
32
32
33
33
dotnet run -p Receive/Receive.csproj
34
34
dotnet run -p Send/Send.csproj
35
35
36
- #### [ Tutorial two: Work Queues] ( https://www.rabbitmq.com/tutorial-two-dotnet.html )
36
+ #### [ Tutorial two: Work Queues] ( https://www.rabbitmq.com/tutorials/ tutorial-two-dotnet.html )
37
37
38
38
dotnet run -p Worker/Worker.csproj
39
39
dotnet run -p NewTask/NewTask.csproj
40
40
41
- #### [ Tutorial three: Publish/Subscribe] ( https://www.rabbitmq.com/tutorial-three-dotnet.html )
41
+ #### [ Tutorial three: Publish/Subscribe] ( https://www.rabbitmq.com/tutorials/ tutorial-three-dotnet.html )
42
42
43
43
dotnet run -p ReceiveLogs/ReceiveLogs.csproj
44
44
dotnet run -p EmitLog/EmitLog.csproj
45
45
46
- #### [ Tutorial four: Routing] ( https://www.rabbitmq.com/tutorial-four-dotnet.html )
46
+ #### [ Tutorial four: Routing] ( https://www.rabbitmq.com/tutorials/ tutorial-four-dotnet.html )
47
47
48
48
dotnet run -p ReceiveLogsDirect/ReceiveLogsDirect.csproj info
49
49
dotnet run -p EmitLogDirect/EmitLogDirect.csproj
50
50
51
- #### [ Tutorial five: Topics] ( https://www.rabbitmq.com/tutorial-five-dotnet.html )
51
+ #### [ Tutorial five: Topics] ( https://www.rabbitmq.com/tutorials/ tutorial-five-dotnet.html )
52
52
53
53
dotnet run -p ReceiveLogsTopic/ReceiveLogsTopic.csproj anonymous.info
54
54
dotnet run -p EmitLogTopic/EmitLogTopic.csproj
55
55
56
- #### [ Tutorial six: RPC] ( https://www.rabbitmq.com/tutorial-six-dotnet.html )
56
+ #### [ Tutorial six: RPC] ( https://www.rabbitmq.com/tutorials/ tutorial-six-dotnet.html )
57
57
58
58
dotnet run -p RPCServer/RPCServer.csproj
59
59
dotnet run -p RPCClient/RPCClient.csproj
60
60
61
- #### [ Tutorial seven: Publisher Confirms] ( https://www.rabbitmq.com/tutorial-seven-dotnet.html )
61
+ #### [ Tutorial seven: Publisher Confirms] ( https://www.rabbitmq.com/tutorials/ tutorial-seven-dotnet.html )
62
62
63
63
dotnet run -p PublisherConfirms/PublisherConfirms.csproj
0 commit comments