I have a build of some ASP.NET code that was compiled with
<compilation debug = "true">
We have a major performance issue that seems to be fixed by changing this value and recompiling. The problem is that we cannot roll back to restore the current deployed code. Is there anything I can do for the current build?
I see a lot of links to modifying machine.config and adding
<configuration>
<system.web>
<deployment retail="true"/>
</system.web>
</configuration>
I see that the machine.config file is available in folders with frames 2.0 and 4.0, but not 3.5 (for which it was created).
It is currently running on IIS7.
What can be done if anything?
source
share