Search Results for

    Show / Hide Table of Contents

    Enum ResponseFileHandling

    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.

    Namespace: McMaster.Extensions.CommandLineUtils
    Assembly: McMaster.Extensions.CommandLineUtils.dll
    Syntax
    public enum ResponseFileHandling

    Fields

    Name Description
    Disabled

    Do not parse response files or treat arguments with '@' as a response file

    ParseArgsAsLineSeparated

    Each line in the file is treated as an argument, regardless of whitespace on the line.

    Lines beginning with # are skipped.

    ParseArgsAsSpaceSeparated

    Multiple arguments may appear on one line. Arguments are separate by spaces.

    Double and single quotes can be used to wrap arguments containing spaces.

    • Improve this Doc
    • View Source
    In This Article
    Back to top