microsoft / vscode-debugadapter-node

Debug adapter protocol and implementation for VS Code.
Other
273 stars 79 forks source link

${Env.<envvar>} not getting expanded in PowerShell debug configuration #99

Closed rkeithhill closed 7 years ago

rkeithhill commented 7 years ago

This page says:

You can also reference environment variables through ${env.Name} syntax (e.g. ${env.PATH}). Be sure to match the environment variable name's casing, for example ${env.Path} on Windows.

Yet I'm finding with our PowerShell extension, no value gets passed to the PowerShell debugger for the specified environment variable. Is there something we need to do in the extension e.g. call an env var expansion API to make this work?

weinand commented 7 years ago

@rkeithhill variable expansion happens on the VS Code side. No debug adapter is involved in this.

weinand commented 7 years ago

This issue was moved to Microsoft/vscode#20022