You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
In my setup there are multiple environments using the same code-workspace (= checked into vcs) and the parts that are different per machine are setup for example in a configuration settings.my.folder (from the machine/user configuration) which I can then use everywhere in tasks by ${config:my.folder} or things like ${env:HOME} "out of the box"; but for extensions this has to be manually resolved as vscode still does not do it directly when calling the api function (microsoft/vscode#2809).
Describe the solution you'd like
Manually search for at least ${config: in at least the file/path related settings like coverage-gutters.coverageBaseDir and resolve it before using the setting, for many people ${env: will be important.
Describe alternatives you've considered
Check out, manually adjust the configuration per local environment, take care to not check in :-(
Additional context
There is a list of official namespaces and variables available, this shows things like ${env:..}, ${workspaceFolder:..}, ${config:..}, ${userhome}.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
In my setup there are multiple environments using the same code-workspace (= checked into vcs) and the parts that are different per machine are setup for example in a configuration
settings.my.folder
(from the machine/user configuration) which I can then use everywhere in tasks by${config:my.folder}
or things like${env:HOME}
"out of the box"; but for extensions this has to be manually resolved as vscode still does not do it directly when calling the api function (microsoft/vscode#2809).Describe the solution you'd like
Manually search for at least
${config:
in at least the file/path related settings likecoverage-gutters.coverageBaseDir
and resolve it before using the setting, for many people${env:
will be important.Describe alternatives you've considered
Check out, manually adjust the configuration per local environment, take care to not check in :-(
Additional context
There is a list of official namespaces and variables available, this shows things like
${env:..}
,${workspaceFolder:..}
,${config:..}
,${userhome}
.The text was updated successfully, but these errors were encountered: