I am developing a .NET core application (.NET Standard 1.6) in VS2015. An application calls C ++ code through P / Invoke. Now I need to switch to the C / C ++ code of my native dll project.
In a regular .NET application, allowing uncontrolled debugging of the code in the application properties window, we can directly enter the C / C ++ code:

But I can not find such an option in the .NET .NET project. And I know that I can attach a debugger to the application to debug only my own code, but this is not suitable for my case.
Again, I want to debug from managed C # code to native C / C ++ code.
Any ideas?
Maybe I should go back to the .NET Framework so that I can debug my own code. It is very difficult to debug printf . printf
source share