Using GeneXusX ev3 U15m, C# (net), Web, Sqlserver. When change some object and build this, refresh website and wait for long time (more 9 minutes). Test with move parameters IIS, hosts, web.config, debug off (only release), without firewall, and same.
CodePudding user response:
¿Have you tried with the tag optimizeCompilations="true" in the web.config?
Original line :
<compilation debug="true" strict="false">
Change it to:
<compilation debug="true" strict="false" optimizeCompilations="true">
This avoids recompiling the whole site when refreshing when any change is made.