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.
Asked
Active
Viewed 587 times
1
-
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 Answers
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.

Guido Lorenzatti
- 208
- 2
- 6
-
-
The last line helped me something, but DevTools gave me the complete solution, thanks to all. – Victor Glez Sep 13 '22 at 17:50
-