Tony
Tony

Reputation: 12695

VS 2008 The debugging tool doesn't work

I have problem with Visual Studio Team System 2008.

The compiler suddenly stopped watching for my breatpoints, no matter where I place them. I compile my project by F5 button. How to turn it on again ?

Upvotes: 1

Views: 73

Answers (1)

Leniel Maccaferri
Leniel Maccaferri

Reputation: 102408

Firstly, clear all the breakpoints. After that clean the solution. Then rebuild the solution. Now set the breakpoints again.

Sometimes I also delete the bin and debug folders (manually). If that doesn't work, close Visual Studio and open it again.

If you're using the bundled web server that comes with Visual Studio called Cassini (the icon that stays close to your computer clock), shut it down. Even when you stop the application the standard ASP.NET development web server stays alive. Kill it too.

If the above doesn't help, check the following links:

http://www.dotnetspider.com/resources/21865-Visual-Studio-NET-Debugger-Does-Not-Stop.aspx

http://forums.asp.net/t/372106.aspx

Upvotes: 1

Related Questions