tags:

views:

24

answers:

2

If I type nant -help I receive help information about the various command-line options.

Some, such as find have a suffix of [+|-], e.g.

-find[+|-]                     Search parent directories for build file

What does the [+|-] mean?

+1  A: 
polygenelubricants
+1  A: 

According to the source code, find is a boolean type, and adding + or - simply sets it to true or false accordingly. I suppose the - is useful to override a previous setting, don't know why you'd want to have an explicit + though.

roe