Apologies for the title, but I really am having difficulty even defining what's going on here.
I have a program with a line
long svnSuccess = SVNCommands.GetSVNHeadRevNo(svnLocation);
SVNCommands is a static class.
If I put a breakpoint on the line above, and then F11 (step into) to watch the execution of the code in SVNCommands it just... nothing. Behaviour is like an infinite loop. The program doesn't crash in any way. It just stops proceeding. VS doesn't take me to SVNCommands.GetHSVNHeadRevNo. I even have breakpoints at the start of that function (just to prove it's not getting there without realising) and they're not reached.
Any ideas as to what might be happening here?