Hi,
Is there any way to prevent from IIS 7 to automatically restart when changing files, dlls in bin directory or web.config.
In IIS 6 I achieved that by configuring numRecompilesBeforeAppRestart, maxWaitChangeNotification parameters in the web.config:
<system.web>
<httpRuntime maxRequestLength="40000" executionTimeout="1000" waitChangeNotification="86400" maxWaitChangeNotification="86400" minFreeThreads="88" minLocalRequestFreeThreads="76" appRequestQueueLimit="100" />
<compilation defaultLanguage="c#" debug="false" numRecompilesBeforeAppRestart="15000" />
<httpHandlers>
Unfortunately IIS 7 ignores waitChangeNotification, maxWaitChangeNotification parameters.
So how can it be done?
Thanks,
Lior Schwimmer