最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

visual studio code - How to define variables in global options in vscode tasks.json and refer it in task? - Stack Overflow

programmeradmin2浏览0评论

We use some custom build system (not vanilla make). Generally, we don't build code (C++) in the sandbox and create linked area (directory with soft links to files in the sandbox) to do the build there. For debug and optimized builds, I may have 2 such paths. And I want to define 2 different tasks for triggering opt or debug builds ...

For experimenting with defining tasks, I wanted to define 2 dummy tasks - echo full path of build.log from the opt build area, and another to echo full path of build.log from the debug build area.

I tried following:

{
    "version": "2.0.0",
    "options": {
        "env": {
            "OPT_BUILD": "<some common path>/opt",
            "DBG_BUILD": "<some common path>/dbg"
        },
    },
    "tasks": [
        {
            "label": "Echo Full Opt-Build Log Name",
            "type": "shell",
            "command": "echo",
            "args": ["${env:OPT_BUILD}/build.log"],
            "presentation": {
                "reveal": "always",
                "panel": "new"
            }
        },
        {
            "label": "Echo Full Dbg-Build Log Name",
            "type": "shell",
            "command": "echo",
            "args": ["${env:DBG_BUILD}/build.log"],
            "presentation": {
                "reveal": "always",
                "panel": "new"
            }
        },
    ]
}

However, when I run any of these, it just prints /build.log. How to fix it?

I don't want to move the options inside tasks. The doc says following:

Options can be set per task but also globally or per platform. Environment variables configured here can only be referenced from within your task script or process and will not be resolved if they are part of your args, command, or other task attributes.

My VS Code version is 1.96.2

We use some custom build system (not vanilla make). Generally, we don't build code (C++) in the sandbox and create linked area (directory with soft links to files in the sandbox) to do the build there. For debug and optimized builds, I may have 2 such paths. And I want to define 2 different tasks for triggering opt or debug builds ...

For experimenting with defining tasks, I wanted to define 2 dummy tasks - echo full path of build.log from the opt build area, and another to echo full path of build.log from the debug build area.

I tried following:

{
    "version": "2.0.0",
    "options": {
        "env": {
            "OPT_BUILD": "<some common path>/opt",
            "DBG_BUILD": "<some common path>/dbg"
        },
    },
    "tasks": [
        {
            "label": "Echo Full Opt-Build Log Name",
            "type": "shell",
            "command": "echo",
            "args": ["${env:OPT_BUILD}/build.log"],
            "presentation": {
                "reveal": "always",
                "panel": "new"
            }
        },
        {
            "label": "Echo Full Dbg-Build Log Name",
            "type": "shell",
            "command": "echo",
            "args": ["${env:DBG_BUILD}/build.log"],
            "presentation": {
                "reveal": "always",
                "panel": "new"
            }
        },
    ]
}

However, when I run any of these, it just prints /build.log. How to fix it?

I don't want to move the options inside tasks. The doc says following:

Options can be set per task but also globally or per platform. Environment variables configured here can only be referenced from within your task script or process and will not be resolved if they are part of your args, command, or other task attributes.

My VS Code version is 1.96.2

Share Improve this question edited Apr 2 at 6:03 soumeng78 asked Apr 2 at 5:10 soumeng78soumeng78 88210 silver badges22 bronze badges
Add a comment  | 

1 Answer 1

Reset to default -1

Resolved after changing

            "args": ["${env:OPT_BUILD}/build.log"],

to

            "args": ["${OPT_BUILD}/build.log"],

与本文相关的文章

发布评论

评论列表(0)

  1. 暂无评论