protected static boolean isFileManagedBinary()

in src/main/org/apache/ant/dotnet/compile/Ilasm.java [509:513]


    protected static boolean isFileManagedBinary(File file) {
        String filename = file.toString().toLowerCase();
        return filename.endsWith(".exe") || filename.endsWith(".dll")
                || filename.endsWith(".netmodule");
    }