This project demonstrates how to send and receive messages with Azure Service Bus.
- Azure cloud account
- azure client cli
- .NET SDK
- Login to azure console
$ az login
- Create azure infrastructure
$ cd ./infa
$ make
- Configure
Update appsettings.json section in
configure.py
file with your Azure Service Bus details.
$ python ./configure.py
- Start a message receiver
$ dotnet run --project src/Receiver.Worker/Receiver.Worker.csproj
- Start message submitter
$ dotnet run --project src/Submitter.ConsoleApp/Submitter.ConsoleApp.csproj