Debugger is not writing script output to the Debug Console #49
Closed
Description
When running the debugger, debug console output never appears. The DebugTest.ps1 script will run, variables can be watched, breakpoints work, etc - but no output will ever appear in the debug console. We've attempted multiple script and launch.json configurations with no success. The latest attempt was made with:
launch.json
{
"version": "0.2.0",
"configurations": [
{
"name": "PowerShell",
"type": "PowerShell",
"request": "launch",
"program": "DebugTest.ps1"
}
]
}
We've tried this on a couple different installs on two different machines.