1

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.

  • Enable FRT and see how the time is consumed on each steps, https://learn.microsoft.com/en-us/iis/troubleshoot/using-failed-request-tracing/troubleshooting-failed-requests-using-tracing-in-iis That should get you started. – Lex Li Sep 13 '22 at 02:54

1 Answers1

1

¿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.