Mohamed Hassan

Results 60 comments of Mohamed Hassan

Thanks @TheCakeIsNaOH for suggestion. Pushing the package directly from within appveyor can be an option. Sometimes, the package owner/maintainer may delay the pushing of the package to have a chance...

@pauby My comment to @TheCakeIsNaOH was to show why one may pack only and delay pushing the package in Appveyor. It's not related to this feature. My concern in the...

Is there a drawback of directing the version and help screen to the standard error (stderr) No, why: 1) The merit of writing to stderr is that the output will...

Sure and agree with you @twaalewijn and @oliverholliday that the wrong thing is to print version information to stderr, **BUT**, I concentrate on the side effect of the change and...

@twaalewijn, I didn't say the 'fix' in #423 is unnecessary, but it's nice if you can avoid the Breaking Change. Can you give working examples how to use the library...

@twaalewijn +10 Excellent explanation. Your comment answered many questions. I think starting with the default (directing version/help to stderror) is wisdom to start without breaking change. This enable the library...

>If the HelpWriter property is marked as Obsolete, what would be the migration path for developers currently intercepting the written help text with their own TextWriter? For the developers who...

I think that no need for nullable bool arguments because you can set the default value in option (true/false) The nullable bool is undefined value (have three state undefined/true/false) Without...

> If the switch is not passed on the commandline (hence value = null) Can we suppose this scenario >If the switch is not passed on the commandline (hence value...

@tig Do you mean to use nullable bool `Landscape` as scalar token like: ``` landscape true OR landscape false ``` //scalar token should have a value Edit: Currently it's working...