> + for file in `cd "$dotnet_runtime_dir" && echo > [ABCDEFGHIJKLMNOPQRSTUVWXYZ]*.dll`; do > + case "$file" in > + *.Native.*) ;; > + *) options_csc="$options_csc -reference:"`echo "$file" | sed -e > "$sed_quote_subst"` ;; > + esac > done
Yep, that should work! The other DLL files that contain dotnet assemblies are mscorlib.dll and netstandard.dll, but it seems that we can compile dotnet assemblies without explicitly add references to them. Good job! -- Michele