Skip to content

angelitocsg/coding-live-006

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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