powershell - How do I specify negative/false command line switches in Simian Analyzer? -
the simian analyzer can invoked this
simian-2.5.1.exe *.cs
which launch default settings. of flags/switches/options boolean , set "true" default. see here complete list.
but how i, in powershell, set true-switches false? is, how specify ignoreidentifiercase
should false?
figured out. option should postfixed either "+" (for true) or "-" (for false). answer is:
simian-2.5.1.exe -ignoreidentifiercase- *.cs
(with minus-sign after "ignoreidentifiercase")
Comments
Post a Comment