public static IMvcBuilder AddNestedRouting(
     this IMvcBuilder builder,
     bool useKebabCase = false)
 {
     return(builder.AddNestedRouting(options =>
     {
         options.UseKebabCase = true;
     }));
 }