Reputation: 2470
I'm trying to understand the intended usage & purpose of various Debugger Options in Visual Studio 2013
Local Windows Debugger is understandable and works the same as in previous versions of Visual Studio,
What are Remote Windows, Web Browser & Web Service Debuggers used for?
Upvotes: 0
Views: 670
Reputation: 838
Remote Windows Debugger is used for debugging your project on a different machine (remote debugging - see http://msdn.microsoft.com/en-us/library/8x6by8d2.aspx)
Web Browser Debugger is used for debugging web applications (asp.net) http://msdn.microsoft.com/en-us/library/ms165008.aspx
Web Service Debugger is used for debugging apps that contain Web Services
Upvotes: 1