Create Queues in RabbitMQ using Nservicebus and Publish message to specific Queue

Our application is document generation application, various customers interacts our application through the HTTP API call to generate the documents. Nservicebus to handle the document generation.

After the document generation. We need to send the document generation status to customer using RabbitMQ. Each customer have specific queue

As per our requirement once end point handler completed their task, we need to publish the status message in customers queue in rabbit MQ.

  1. How to create Queue in rabbit MQ using Nservicebus.
  2. How to publish the message to desired queue using Nserviebus

Closing as a duplicate of Is there a way to create Queues and Exchanges in RabbitMQ explicitly using Nservicebus