upgrading to version 5 and noticed some properties are deprecated?
Does it mean that it is automatically supported
public static void ConfigureEndpointDefaults(this AzureServiceBusTransport transport)
{
transport.SubscriptionNamingConvention = SubscriptionNamingConvention;
transport.SubscriptionRuleNamingConvention = SubscriptionRuleNamingConvention;
} static Func<Type, string> SubscriptionRuleNamingConvention => t => t.FullName!.Length <= 50 ? t.FullName : t.FullName.Substring(t.FullName.Length - 50); static Func<string, string> SubscriptionNamingConvention => n => n.Length <= 50 ? n : n.Substring(n.Length - 50);