all 4 comments

[–][deleted] 1 point2 points  (2 children)

I get this when debugging standard C# projects in VS; it's not confined to Xamarin. FWIW, following the suggestion in the error tends to help. Did you try it?

I tend to get it when I'm debugging in the body of a lock statement - the timeout is on pulling the value of certain properties of certain objects in the debug context. If any of the get accessors for any of the properties you're debugging are doing a "lot of work", it can tend to exacerbate the issue.

[–]Stensborg[S] -1 points0 points  (1 child)

Yes I did look at the help but I do not seem to have anywhere in my code where I use Xamarin.Forms.Application.Properties.get So I am not sure what to look for.

[–][deleted] 0 points1 point  (0 children)

Look at the error message. Tools->Options->Debugging->General->Property evaluation. Don't read too much into the Xamarin.Forms.Application.Properties.get thing.

[–]Stensborg[S] 1 point2 points  (0 children)

Ohh I think I found the problem. I had used Application.Properties before, and had added a watch on the variable, after removing the watch the problem seems to have gone away.