.NET Core & C++ mixed mode debugging with WSL2

500 Views Asked by At

Given a Visual Studio solution with 2 projects:

  1. .NET Core console application (Linux)
  2. 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

enter image description here

0

There are 0 best solutions below