How can I stop going to .NET source code using TestDriven.NET?

I just started using TestDriven.NET to debug my tests, here is my setup

TestDriven.NET 2.17
VS 2008 SP1
Windows XP

The problem I'm running into is an exception that continues to go into the .NET Framework source code. I checked "Tools"> "Options"> "Debug" and "Include .NET Framework native stepping" unchecked and "Include only my code (managed only)" checked.

I right click on the test case and run debug using TD.NET.

So how do I turn this off so that the exception is not included in the .NET Framework source code?

Thanks Ray.

+1


source to share


2 answers


Destroy your .NET Framework symbols and change your symbol path to something weird so the debugger won't be able to go through it



+2


source


If you only enter in the case of an exception, the solution is easier: Go to Debug → Exceptions and uncheck the boxes.



0


source







All Articles