I have the following three projects in my solution: 1. C# library 2. C++/CLI managed code 3. C++ unmanaged code
I did check "Enable Unmanaged Code Debugging" in my C# project, and built both C++ projects in Debug/Win32. However, I cannot step into unmanaged code - when I F11 on the call of any unmanaged method, it shows me some random/wrong code then exits.
Because my unit tests pass, I know that my unmanaged code does execute.
What am I missing?