Advertisement
Guest User

Untitled

a guest
Mar 10th, 2016
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. conventions.DefiningCommandsAs(t => t.Namespace != null && t.Namespace.EndsWith("Commands"));
  2. conventions.DefiningEventsAs(t => t.Namespace != null && t.Namespace.EndsWith("Events"));
  3. conventions.DefiningTimeToBeReceivedAs(
  4. t => t.Name.EndsWith("Expires") ? TimeSpan.FromSeconds(30) : TimeSpan.MaxValue);
  5.  
  6. /serviceName:
  7. /displayName:
  8. /description:
  9. /endpointConfigurationType: (for services not the saga)
  10. /username:
  11. /password:
  12. & NServiceBus.Production
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement