You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

11 lines
306 B

  1. namespace DotNetCore.CAP.Test.FakeInMemoryQueue
  2. {
  3. public static class CapOptionsExtensions
  4. {
  5. public static CapOptions UseFakeTransport(this CapOptions options)
  6. {
  7. options.RegisterExtension(new FakeQueueOptionsExtension());
  8. return options;
  9. }
  10. }
  11. }