.vscode/tasks.json

{
    // See https://go.microsoft.com/fwlink/?LinkId=733558
    // for the documentation about the tasks.json format
    "version": "2.0.0",
    "tasks": [
        {
            "label": "Run Wait-Net -Debug",
            "type": "shell",
            "command": "pwsh",
            "args": [
                "-NoProfile",
                "-Command",
                "& { Import-Module -Force .\\Wait-Net.psm1; Wait-Net -Debug}"
            ],
            "group": {
                "kind": "test",
                "isDefault": true
            }
        }
    ]
}