CliFx with a list of objects command
I have an console application in c# that uses CliFx nuget package. This is an example of what I actually have: [Command] public class CommonXCommand : ICommand { [CommandOption(“property1”)] public required string Property1 { get; init; } [CommandOption(“list_obj”)] public required IReadOnlyList<ObjCommand> ListObj { get; init; } [CommandOption(“property2”)] public required string Property2 { get; init; } … Read more