(Sorry for the awful title, I obviously don't know I am talking about ;o)
I have a command which I assume is a Unix command
TSS_DEBUG=5667 code --user-data-dir ~/.vscode-debug/
What is the Windows PowerShell equivalent?
I tried
set TSS_DEBUG=5667; code --user-data-dir ~/.vscode-debug/
but it doesn't start a debugging version of VSCode.
Also, what is the variable TSS_DEBUG
called? It's probably not an environment variable because it's local to the following command.
Edit: Thanks to mklement0, and the linked duplicate question, the solution is:
$env:TSS_DEBUG=5667; code --user-data-dir ~/.vscode-debug/