Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

The use the bool values #174

Closed
monze opened this issue Jun 24, 2015 · 2 comments
Closed

The use the bool values #174

monze opened this issue Jun 24, 2015 · 2 comments

Comments

@monze
Copy link

monze commented Jun 24, 2015

Hey

Currently using version .1.9.71.
How can a make a boolean argument, and set is value to false?
I have tested with many combination, but no-matter what I tried, the value become always true, when I use the argument. Last test, I downloaded the source code.

I have notice that in class CommandLine.Parsing.LongOptionParser line 117, that a boolean value always set to true, no-mater which value that stand behind the option.

    valueSetting = option.SetValue(true, options);

Here is what I have seen.
In my option class I have this

        [Option('c', "cValue", Required = false, DefaultValue = true, HelpText = "Bool: Required = false, Default=true. Expected: true")]
        public bool CValue_true { get; set; }

        [Option('d', "dValue", Required = false, DefaultValue = false, HelpText = "Bool: Required = false, Default=false. Expected: false.")]
        public bool DValue_false { get; set; }

If I now use the parser, with no argument, c become true, and d become false.
However, if I add these parameters "-d False" d always become true. Can't find a way to tell the CommandLineParser to make d false, nor c for that matter. Can only do it by using default values, and not include them in the argument list, but this can be right?

What am I doing wrong?

Jacob Mogensen

@gsscoder
Copy link
Owner

@monze,
the syntax you quoted is not supported since the library implement getopt() *nix standard.

In both version a scalar boolean is false only when omitted and set true when specified:

# 'c' == true
app -c
# 'c' == false
app

As now 2.0.x-pre is quite usable so I suggest you to use the new version (possibly building from sources, just executing packages\FAKE...\tools\Fake.exe from cloned repo).

There's actually more than an issue/discussion on allowing an explicit false value or use a common pattern of app c+ \ app c-.

For the moment the priority is to promote current 2.0 pre-release to an higher level of stability, like alpha.

@gsscoder
Copy link
Owner

Please refer to:
#158
and
#133

I've to close the issue since it's a duplicate, but feel free to add comments (better if in issue #158).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants