Reputation: 832
I am trying to debug an application but every time I do it reports it is unable to start debugging as the debugger cannot connect to the remote computer.
Only thing is the application it is debugging is a console application and there is no need to access a remote PC.
Upvotes: 1
Views: 2381
Reputation: 81
Under Project Properties > Web section, I changed Project Url from some url that mapped to remote server to http://localhost/somePath, and it worked just fine.
Upvotes: 0
Reputation: 832
In the Debug Section of the Project Properties the Use Remote Machine checkbox was clicked (why I don't rightly know) - for this reason it was trying to connect to a remote machine which just did not exist.
Clearing this flag got rid of the issue.
Upvotes: 1