public void addArgument()

in src/main/org/apache/ant/dotnet/NetCommand.java [223:230]


    public void addArgument(String argument, boolean mayBeInResponseFile) {
        if (argument != null && argument.length() != 0) {
            commandLine.createArgument().setValue(argument);
            if (!mayBeInResponseFile) {
                argsOnCommandLine.add(argument);
            }
        }
    }