.vscode/launch.json

{
  "version": "0.2.0",
  "configurations": [
    {
      "name": "PowerShell: Run PowerTree Test",
      "type": "PowerShell",
      "request": "launch",
      "script": "${workspaceFolder}/Test.ps1",
      "args": [
        "-DisplaySize",
        "-SortBySize",
        "-Path",
        "${workspaceFolder}",
        "-OutFile",
        "x",
        "-verbose",
        "-Quiet",
        "-DisplayMode",
        "-DisplayModificationDate"
      ]
    },
    {
      "name": "PowerShell: Run PowerTree Test (Directory Only)",
      "type": "PowerShell",
      "request": "launch",
      "script": "${workspaceFolder}/Test.ps1",
      "args": ["-DirectoryOnly", "-Path", "${workspaceFolder}", "-verbose"]
    },
    {
      "name": "PowerShell: Run PowerTree Test (Help)",
      "type": "PowerShell",
      "request": "launch",
      "script": "${workspaceFolder}/Test.ps1",
      "args": ["-Help", "-verbose"]
    },
    {
      "name": "PowerShell: Run PowerTree Test (Examples)",
      "type": "PowerShell",
      "request": "launch",
      "script": "${workspaceFolder}/Test.ps1",
      "args": ["-Examples", "-verbose"]
    },
    {
      "name": "PowerShell: Run PowerTree Test (Custom)",
      "type": "PowerShell",
      "request": "launch",
      "script": "${workspaceFolder}/Test.ps1",
      "args": []
    }
  ]
}