in one line of my solution which is made of a couple of projects I want to debug one line of code, something like this:
mThisLibrary.DoSthMethod();
but when I put my break point on that line and press F11, the debugger says that "There is no source code available" so I cannot get into it deeper. BUT the source code is there so for example if I click F12 on the method name, I can go to its implementation easily. I am not sure why the debugger cannot get inside that method.
Any ideas?