Enum ResponseFileHandling
- Namespace
- McMaster.Extensions.CommandLineUtils
- Assembly
- McMaster.Extensions.CommandLineUtils.dll
Specifies options for how to handle response files. The parser treats arguments beginning with '@' as a file path to a response file.
A response file contains additional arguments that will be treated as if they were passed in on the command line. Response files can have comments that begin with the # symbol. You cannot use the backslash character (\) to concatenate lines.
public enum ResponseFileHandling
Fields
Disabled = 0Do not parse response files or treat arguments with '@' as a response file
ParseArgsAsLineSeparated = 2Each line in the file is treated as an argument, regardless of whitespace on the line.
Lines beginning with # are skipped.
ParseArgsAsSpaceSeparated = 1Multiple arguments may appear on one line. Arguments are separate by spaces.
Double and single quotes can be used to wrap arguments containing spaces.