The .NET 3.5 application I am working on consists of bunch of different solutions. Some of these solutions consist of managed code(C#) and others have unmanaged code(C++). M
By default a managed project will only start the debugger with managed debugging enabled. It doesn't consider that there are unmanaged projects in the same solution. In order to debug both you need to explicitly enable unmanaged code debugging.
In Visual Studio 2019, the option is enabled as follows:
then you will be able to debug the native code. Good luck !!!
Please refer the below attached image highlighted with red rectangle.