Given a Visual Studio solution with 2 projects:
- .NET Core console application (Linux)
- C++ for Linux project (output: Dynamic library,
.so)
Where #1 has a dependency on #2:
- I am able to debug #1 and #2 separately in WSL2 from Visual Studio 2019.
- The output of #2 is loaded successfully during the runtime of #1.
Q: Is it possible in Visual Studio 2019 to debug #1 in mixed mode, while stepping into code in #2? (if it's definitely not possible, knowing that would also be helpful)
Note: the 'Enable native code debugging' option doesn't appear in project #1's debug's settings
