Configuring Azure Service Bus Transport - NimbusAPI/Nimbus GitHub Wiki
To use Azure Service Bus you first need to install the ASB transport as a nuget package.
Install-Package Nimbus.Transports.AzureServiceBus
Then you configure the transport and pass it to the Bus Builder.
var transport = new AzureServiceBusTransportConfiguration().WithConnectionString(connectionString);
var bus = new BusBuilder().Configure()
.WithNames("MyApplication", Environment.MachineName)
.WithTransport(transport)
.WithTypesFrom(typeProvider)
.Build();