我正在尝试在tasks.json
中C#项目的vscode
文件中的任务中使用环境变量。
在我的launch.json
文件中,我有以下代码来解析.env文件:
"configurations": [
{
...
"envFile": "${workspaceFolder}/.env",
}
]
然后我在tasks.json
文件中完成以下任务:
{
"label": "login",
"command": "sh",
"type": "shell",
"args": [
"${workspaceFolder}/etc/login.sh",
"${env:USERNAME}",
"${env:PASSWORD}"
]
}
这似乎是https://code.visualstudio.com/docs/editor/tasks中隐含的代码,但是(通过在另一个任务中进行回显测试),我发现最后两个args
是空白的。经过在线研究之后,我认为我已经找到了原因,configurations..env
本身被tasks
使用,而不是运行的task.json
可以访问,因此无法访问。
如何在env variables
中创建(使用)这些tasks.json
?
答案 0 :(得分:0)
/**
* The environment of the executed program or shell. If omitted
* the parent process' environment is used.
*/
env?: { [key: string]: string };
示例
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "diagnostic",
"type": "shell",
"options": {
"cwd": "${workspaceFolder}/beam",
"env": {
"FOO": "baz",
}
},
"command": "printenv",
"problemMatcher": []
}
]
}
我无法像从launch.json这样的文件中提取这些
我会在vscode存储库上打开一个问题