I have a large project that executes without problem when not debugging (even when running the debug build).
If I try to debug the project, when execution hits a certain MS CCR dependent library the debugger pauses execution:
The call stack at this point appears as follows:
This occurs even when "Debug"->"Exceptions..."->"CLR Exceptions" thrown and user-unhandled are both unchecked.
The problem appears to be happening in Microsoft.Core.Ccr.dll
at Microsoft.Ccr.Core.TaskExecutionWorker.ExecuteTaskHelper(Microsoft.Ccr.Core.ITask currentTask) + 0x94 bytes
since I upgraded the project to .net4.5 and added the latest version of Microsoft.Ccr.Core
(4.0.261.0).
This is a major inconvenience to my debugging efforts as hitting these non-existent breakpoints means that other time-related parts of my project are almost impossible to debug correctly.
What could possibly be causing this behaviour and are there any options I've missed that might allow VS to ignore the problem?