It's not passable to set queue name suffix on Bus.SubscribeAsync with fluent manner, because IQueueConfigurationBuilder doesn't has WithNameSuffix method, but QueueConfigurationBuilder has it.
.WithQueue(cfg => cfg
.WithNameSuffix("queue_prefix") // not exist
.WithName("queue_name")
.WithAutoDelete()
));
Thank you for this! There is currently no planed release date for 1.x branch. I'll like to keep your PR open until a time where we know that a new release of 1.x is on it's way.
Description
It's not passable to set queue name suffix on
Bus.SubscribeAsync
with fluent manner, becauseIQueueConfigurationBuilder
doesn't hasWithNameSuffix
method, butQueueConfigurationBuilder
has it.Check List
stable
branch.