Created
April 6, 2011 12:03
-
-
Save mookid8000/905536 to your computer and use it in GitHub Desktop.
NServiceBus bus config sample
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var bus = Configure.With() | |
.DefaultBuilder() | |
.XmlSerializer() | |
.MsmqTransport().IsTransactional(false) | |
.UnicastBus().LoadMessageHandlers() | |
.CreateBus() | |
.Start(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment