Adam Sitnik

Results 313 comments of Adam Sitnik

> This doesn't seem to have been done, so anyone using Argument will have to set a custom parser function and custom localization of error messages. That is true. But...

With #2071 : ```cs ParseResult parseResult = rootCommand.Parse(args); if (parseResult.Action is HelpAction) { } else { } ```

Fixed by various recent PRs (#2095, #2093, #2089)

Hello @DragonSA No, there is no way to do that as of today. However, we are open to ideas and suggestions (how should we extend our API to make it...

Some thoughts: - We could introduce a new type for wrapping the values like `BenchmarkArgument(T value, bool isBaseline = false)` where we could specify whether the argument is a baseline...

As @colejohnson66 wrote, the official docs already mention that: https://learn.microsoft.com/en-us/dotnet/api/system.string.lastindexof?view=net-8.0 @Sildoreth which docs did you mean?

> The example should be modified to use `new FileInfo(fileName).SetAccessControl(fSecurity)` I agree. Would you like to send a PR with a fix? > The reference links in the .NET 8...

> I fixed the error message pattern in the build analysis. Thank you!