Reputation: 4803
In Visual Studio 2022, I went to "Debug" => "Options" => "General" and unchecked "Enable Just My Code"
I also went to "Debug" => "Options" => "Python" => "Debugging" and checked "Enable debugging of the Python standard library".
I also created "launch.json", and put "justMyCode": false
inside configuration
.
But nothing helps, Visual Studio 2022 simply ignores that, and when I try to step into third-party code, I see this: "Frame skipped from debugging during step-in".
Is there any way to enforce Visual Studio to debug also third-party code in Python projects?
Upvotes: 1
Views: 58