in src/main/org/apache/ant/dotnet/compile/DotnetCompile.java [264:287]
protected String getReferenceFilesParameter() {
//bail on no references
if (references == null) {
return null;
}
//iterate through the ref list & generate an entry for each
//or just rely on the fact that the toString operator does this, but
//noting that the separator is ';' on windows, ':' on unix
//bail on no references listed
if (references.length() == 0) {
return null;
}
StringBuffer s = new StringBuffer(REFERENCE_OPTION);
if (isWindows) {
s.append('\"');
}
s.append(references);
if (isWindows) {
s.append('\"');
}
return s.toString();
}