1

The Simian Analyzer can be invoked like this

simian-2.5.1.exe *.cs

which will launch it with all its default settings. Some of its flags/switches/options are Boolean and set to "true" as default. See here for the complete list.

But how do I, in Powershell, set the true-switches to false? That is, how do I specify that ignoreIdentifierCase should be false?

someName
  • 1,275
  • 2
  • 14
  • 33

1 Answers1

1

Figured it out. The option should be postfixed with either a "+" (for true) or a "-" (for false). So the answer is:

simian-2.5.1.exe -ignoreIdentifierCase- *.cs

(with the minus-sign after "ignoreIdentifierCase")

someName
  • 1,275
  • 2
  • 14
  • 33