dbobrowski
dbobrowski

Reputation: 846

remote debugging an ASP.NET web application

I've got everything set up for remote debugging, when I attach to process my debugger shifts all my break points around. I assume this is because the code base is different maybe? What is the cause of this issue and how do I fix?

Upvotes: 1

Views: 272

Answers (2)

dbobrowski
dbobrowski

Reputation: 846

The code base was different just slightly after promotion - pulling the source from the server and running that solution resolved this issue for me.

Upvotes: 0

keyboardP
keyboardP

Reputation: 69362

Try copying the debug symbols from your local build to your remote server.

Upvotes: 1

Related Questions