Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Mixed mode debugging with Resharper on x64?

Tags:

c#

.net

resharper

I have an .NET 4.0 application thats mostly in C#. It's got a managed C++ DLL that makes use of an unmanaged library. I'd like to debug the library from within ReSharper, but I'm on x64. If I use nunit and attach the debugger to the running nunit process everything works fine

is there any way to do what I need?

like image 317
stuck Avatar asked May 29 '26 14:05

stuck


1 Answers

Actually there IS an issue with resharper here. We can debug in nunit, mstest and if we spin up out application and attach with a debugger. But basically no matter what you do you will NEVER get a breakpoint to hit in Resharper. And there is no error it just bypasses everything in the unmanaged code. There is at this point in time no solution that I can find that allows mixed mode debugging with resharper. Our organization struggled with this for several weeks. We eventually abandoned resharper for debugging in favor of plain mstest.

see the following: http://devnet.jetbrains.net/thread/290349

like image 154
Bill Biddy Avatar answered Jun 01 '26 02:06

Bill Biddy