Anyname Donotcare
Anyname Donotcare

Reputation: 11403

the debugging finish without completing the debug

I debug my code as usual , and put set of break points but i note that the debugging finish without completing the cycle !!

and this is happened in a dummy manner . How to fix this problem ?

Upvotes: 0

Views: 230

Answers (3)

Aristos
Aristos

Reputation: 66641

When I have problems with the break points I go and delete the .suo file that is a hidden file with the same name as the project on the same directory with the project and keeps among other information's, the debug break points.

Always make a backup first.

Upvotes: 1

Carls Jr.
Carls Jr.

Reputation: 3078

How about trying this

1.) Run-> type inetmgr

2.) From the Application Pools, select the name of the application pool that you are working on.

3.) Right click and select Advance Settings

4.) Under Process Model, increase the value of "Ping Maximum Response Time" to say for example 9000

5.) Also try increasing the value of the "Ping Period"

Hope this helps. :)

Upvotes: 1

Colm Prunty
Colm Prunty

Reputation: 1620

Is it skipping the breakpoints? If so, I had this problem on Visual Studio 2008, and had to apply this patch:

http://archive.msdn.microsoft.com/KB957912/Release/ProjectReleases.aspx?ReleaseId=1796

Upvotes: 0

Related Questions