protected void addCompilerSpecificOptions()

in src/main/org/apache/ant/dotnet/compile/JSharp.java [109:116]


    protected void addCompilerSpecificOptions(NetCommand command) {
        if (pureJava) {
            command.addArgument("/x:all");
        }
        if (secureScoping) {
            command.addArgument("/securescoping");
        }
    }