Setting the timeout period for the debugger in VS2008

I am using C # -Service in a Delphi application, the problem is that VS stops the debugger if I don’t click on it for a while.

It seems like a debug timeout problem, but I cannot find any related configuration in VS for this. Does anyone know if there is such a configuration and where is it?

Thank you for your help.

+1
source share
1 answer

Well, I think I found the answer:

You must stop checking the status of the process by disabling the pinging property by running the following command:

appcmd set apppool /apppool.name: string /processModel.pingingEnabled: false

Or using the user interface:

  • Open IIS Manager

  • "" node " ".

  • " " " " "".

  • Pinging Enabled False, , OK.

+1

All Articles