Vscode tasks

Hi,

I’m setting up vscode to port a binding to OH3. I use this guide as reference:

The problem is in the step 10. When I press CTRL-SHIFT-P -> doesn’t appear the option to start the openhab debug, and I have the files in the binding directory (for testing I’m using the sonos binding):

ls openhab-addons/bundles/org.openhab.binding.sonos/.vscode/
launch.json settings.json tasks.json

And in the tasks.json I’ve:

"tasks": [
    {
        "label": "Start openHAB (Debug)",
        "type": "shell",
        "isBackground": true,
        "command": "$openhab_home/start.sh debug",
        "windows": {
            "command": "& $env:openhab_home/start.bat debug"
        },

Can anyone help?

Thx