Results 105 comments of Nemec

Only @gsscoder has access to do that and he currently has other commitments to attend to. If you're concerned about crashing the latest master is stable, but unfortunately it's not...

You know, I'm not really sure. There is a 2.0 stable milestone, but comments within one of the issues indicate that it's postponed until post-2.0 release. TBH I'm happy to...

I finally got access to the official repo and pushed a new prerelease package based on the latest master. #361 seems to be the only outstanding bug that should be...

You need to use the [generic](https://github.com/gsscoder/commandline/blob/master/src/CommandLine/Parser.cs#L86) version of the `ParseArguments` method, otherwise the parser doesn't know what kind of arguments are available to parse. If that doesn't solve the problem,...

@LtKlaus there are two methods on ParserResult: `WithParsed` and `WithNotParsed`. Those do the appropriate conversion for you. It's a bit of a 'functional' way of doing things.

Yes, I think that's a bug. If you set `Required=false` you'll see that a, b, and InputFile.txt are all part of Included. Additionally, the "EnableDashDash" setting doesn't work either: ```...

I'm still having issues on the master branch with the code snippet I posted above, as well as @SuperFXMaster's.

@ericnewton76 is correct, the options class must be mutable as it takes the instance generated by the factory function and sets the appropriate properties. Did you miss the negation in...

Hmm, that part of the code was written by the repo owner and I haven't seen it yet, but maybe you're right that it is possible.

@ClerioVision you were _so_ close! First, you cannot use the parse method with the factory (CommandLine will generate its own factory), and second the parameter names in the constructor _must_...