using System.CommandLine.Binding; using Jtr.Tools.CLI.Extensions; namespace Jtr.Tools.CLI; public class CommandOptionsBinder : BinderBase { protected override CommandOptions GetBoundValue(BindingContext context) => new CommandOptions().WithCommonBindings(context); }