I\'m running NServiceBus 3.0.0 rc2 but when I start the application (as local admin) without pre-creating the MSMQ\'s it errors with :
The queue does
I got around this by creating the queue on the client side manually (which is self hosted).
Not sure, but I thought 2.x did this automatically. Host is creating the queues automatically, as expected, but not the client (self hosted).
UPDATE: Like Andreas, senor guardo camino, stated, you need to call install manually like so;
.Start(() => Configure.Instance.ForInstallationOn().Install());
This will create the queues as expected.