Hey guys, Can anyone please tell me what I'm doing wrong with the following fragment ``` var aCommand = new Command("findCreator", handler: CommandHandler.Create<string>(async (string file) => { Console.WriteLine(file); })); aCommand.AddOption(new Option("--input", "input file name", new Argument<string>())); root.AddCommand(aCommand); root.InvokeAsync(args).Wait(); ``` I run the app with `app findCreator --input filename` and getting `file` as `null` in my lambda. Can anybody provide a hint please?