coder (π³)
coder (π³)
Analyzing things better I see that the package upgraded is `nodejs.install` and not `nodejs`. Anyway it seems impossible to pin it. Tried with: ``` choco pin add -n="nodejs.install" choco pin...
Work made to make it more C#-ish: https://github.com/gsscoder/railwaysharp/blob/master/src/RailwaySharp/ErrorHandling.cs: - removed "custom" Fold func using Linq Aggregate - removed custom pair OkPair in Ok case Next step: - remove some Trial...
Hi, can you post your _Options_ class please? If with **README** you're talking about the **WIKI**, this is correct because 2.0.x beta lacks _ParseArgumentsStrict_ and **WIKI** is about 1.9.x stable....
Hi all, if possible I'd suggest to make _interactive_ and _service_ normal verbs (without dashes), if possible. At the moment when using verbs none global switch is supported, but maybe...
@eakoning, can you test it with **2.0**. Changes to public API are easy even if you use it with multiple verb classes. The effort to maintain two branch is great...
Hi, @scadorel, as stated I've recently restored (my) support to the project. I _ping_ you to tell I'll take care of this, for now. Giacomo
Hi @sushihangover and thank you for choosing our library. @nemec I think he is using a single dash for specifying option with long names, this is incorrect. Correctly defining these...
@sushihangover, I'd like to add that various [*mcs](http://www.mono-project.com/docs/about-mono/languages/csharp/) commands allow long option names with a single switch (I don't know if also `--option` is legal...). Command Line Parser Library (both...
Just reasoning about possible evolutions... Instead of `AllowedValues` implemented as a list of valid alternatives or with a custom validation function, we can use regular expressions. ``` csharp [Option('o', "optimize",...
This was a good exchange of info! I also know an Erlang library that accepts a repetition of options (but now I can't remember the name...). I've to do some...