Skip to content

Latest commit

 

History

History
43 lines (27 loc) · 985 Bytes

File metadata and controls

43 lines (27 loc) · 985 Bytes

RabbitMQ - Messages and Queues | Coding Live #006

Getting Started

These instructions is a part of a live coding video.

Prerequisites

Example project

Create a base folder CodingLive006.

Create the .gitignore file based on file https://github.com/github/gitignore/blob/master/VisualStudio.gitignore

Creating projects

dotnet new console --name Ex1Consumer
dotnet new console --name Ex1Publisher

dotnet new console --name Ex2Consumer
dotnet new console --name Ex2Publisher

dotnet new console --name Ex3Consumer
dotnet new console --name Ex3Publisher

dotnet new console --name Ex4Consumer
dotnet new console --name Ex4Publisher

Add package for RabbitMQ client

dotnet add package RabbitMQ.Client

References

https://www.rabbitmq.com/getstarted.html https://www.rabbitmq.com/tutorials/tutorial-one-dotnet.html