protected String getReferencesParameter()

in src/main/org/apache/ant/dotnet/compile/DotnetCompile.java [222:233]


    protected String getReferencesParameter() {
        //bail on no references
        if (notEmpty(references)) {
            if (isWindows) {
                return '\"' + REFERENCE_OPTION + references + '\"';
            } else {
                return REFERENCE_OPTION + references;
            }
        } else {
            return null;
        }
    }