使用 VS Code 提供额外的配置文件

问题描述 投票:0回答:1

如何使用 Visual Studio Code 使用 https://github.com/ballerina-platform/ballerina-spec/blob/master/configurable/spec.md#locing-toml-files 中指定的多个 .toml 文件? (假设我想使用

Config.toml
B.toml
) 在
.vscode/launch.json
中我添加了:

{
"version": "0.2.0",
    "configurations": [
        {
            "name": "Ballerina Run",
            "type": "ballerina",
            "request": "launch",
            "programArgs": [],
            "commandOptions": [],
            "env": {
                "BAL_CONFIG_FILES": "./Config.toml:./B.toml"
            }
        }
    ]
}

我无法通过

B.toml
提供可配置变量,只能选择通过
Config.toml
添加的变量。
通过命令行提供配置文件时它可以工作,如下所示:
在 Linux 中
BAL_CONFIG_FILES="./Config.toml:./B.toml" bal run

但将配置文件添加到
.vscode/launch.json
并按
Run
按钮运行程序是行不通的。

ballerina
1个回答
0
投票

在 VS Code 中,内部

Run
按钮只会打开一个新终端并运行
bal run
命令。您在
.vscode/launch.json
中添加的配置在那里没有使用。

© www.soinside.com 2019 - 2024. All rights reserved.