Debugging Python inside Docker with Visual Studio 2022

Viewed 67
1 Answers

The link you included states:

Supported project types include web app, console app, and Azure Function targeting .NET Framework and .NET Core.

Since Python doesn't meet these requirements, I don't think it is possible. In addition, one of the first steps you must do when creating the project is to enable Docker, which isn't even an option for a Python project, further leading me to believe its not possible.

It seems that Visual Studio Code appears to be able to do this.

Related