rabbitmq-tutorials/dotnet-visual-studio
Oliver Freitag b0ab0e8793 switched all projects to new project file format and dotnet core 3.1
* simpler
* no need of config files
* runs under mac as well
2020-07-08 15:48:13 +02:00
..
1_Receive switched all projects to new project file format and dotnet core 3.1 2020-07-08 15:48:13 +02:00
1_Send switched all projects to new project file format and dotnet core 3.1 2020-07-08 15:48:13 +02:00
2_NewTask switched all projects to new project file format and dotnet core 3.1 2020-07-08 15:48:13 +02:00
2_Worker switched all projects to new project file format and dotnet core 3.1 2020-07-08 15:48:13 +02:00
3_EmitLog switched all projects to new project file format and dotnet core 3.1 2020-07-08 15:48:13 +02:00
3_ReceiveLogs switched all projects to new project file format and dotnet core 3.1 2020-07-08 15:48:13 +02:00
4_EmitLogDirect switched all projects to new project file format and dotnet core 3.1 2020-07-08 15:48:13 +02:00
4_ReceiveLogsDirect switched all projects to new project file format and dotnet core 3.1 2020-07-08 15:48:13 +02:00
5_EmitLogTopic switched all projects to new project file format and dotnet core 3.1 2020-07-08 15:48:13 +02:00
5_ReceiveLogsTopic switched all projects to new project file format and dotnet core 3.1 2020-07-08 15:48:13 +02:00
6_RPCClient switched all projects to new project file format and dotnet core 3.1 2020-07-08 15:48:13 +02:00
6_RPCServer switched all projects to new project file format and dotnet core 3.1 2020-07-08 15:48:13 +02:00
7_PublisherConfirms switched all projects to new project file format and dotnet core 3.1 2020-07-08 15:48:13 +02:00
.gitignore Ported .net examples to a visual studio solution 2015-04-28 12:59:10 -04:00
RabbitMQ.Tutorials.sln switched all projects to new project file format and dotnet core 3.1 2020-07-08 15:48:13 +02:00
README.md Update README.md 2019-09-18 16:22:07 -06:00

.NET C# Visual Studio Solution for RabbitMQ tutorials

Here you can find the C# code examples for RabbitMQ tutorials compiled into a Visual Studio solution.

To successfully use the examples you will need a running RabbitMQ server.

NuGet Restore

You may need to "Enable NuGet Package Restore" on the solution upon the first time opening it in order to get the .NET RabbitMQ dependency from NuGet.

Code

Tutorial 1: "Hello World!"

  • 1_Receive
  • 1_Send

Tutorial 2: Work Queues

  • 2_Worker
  • 2_NewTask

Tutorial 3: Publish/Subscribe

  • 3_ReceiveLogs
  • 3_EmitLog

Tutorial 4: Routing

  • 4_ReceiveLogsDirect
  • 4_EmitLogDirect

Tutorial 5: Topics

  • 5_ReceiveLogsTopic
  • 5_EmitLogTopic

Tutorial 6: RPC

  • 6_RPCServer
  • 6_RPCClient

Tutorial 7: Publisher Confirms

  • 7_PublisherConfirms