Install this to enable NServiceBus to facilitate messaging over RabbitMQ
Before doing anything else, make sure you have RabbitMQ up and running in your environment. Also make sure it is accessible from all the machines in your setup.
-
Add NServiceBus.RabbitMQ to your project(s). The easiest way to do that is by installing the NServiceBus.RabbitMQ nuget package.
-
In your app.config make sure to provides the necessary connection information needed to communicate to the RabbitMQ server. A typical setup would be:
<connectionStrings>
<add name="NServiceBus/Transport" connectionString="host=localhost"/>
</connectionStrings>
See https://github.com/Particular/NServiceBus.RabbitMQ.Samples