Reputation: 3217
I want my MVC application to be step into MVC framework contrib project also when debugging.I have installed visual studio 2010 professional edition.
Upvotes: 0
Views: 162
Reputation: 34408
You mean http://mvccontrib.codeplex.com? They publish source, so probably the easiest way is to download their source and rebuild it yourself.
Essentially you need the assemblies, PDB files that correspond exactly to the built assemblies, and source code on disk where the PDB files can find this. You can either
Either way you'll probably have to untick the 'step into my code only' option in Tools\Debugging unless you go down the add-to-your-solution route if you want to actually step into their code, although if you just want to catch exceptions inside their code and debug from there this shouldn't be necessary.
Upvotes: 1