在Mac上的Visual Studio代码调试器中设置环境变量

时间:2019-01-10 23:23:52

标签: macos visual-studio-code nativescript

我想使用VSCode调试器,并想在启动应用程序之前设置环境变量。 Launch文件夹中的配置如下所示。

    {
        "name": "Launch on iOS",
        "type": "nativescript",
        "request": "launch",
        "platform": "ios",
        "appRoot": "${workspaceRoot}",
        "sourceMaps": true,
        "watch": true,
        "environment": [
            {
                "BUILD_ENV": "local"
            }
        ]
    }

这似乎不起作用。我正在使用Mac。

Problem reported by VSCode

1 个答案:

答案 0 :(得分:0)

也许可行:

class A
{
    [JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
    public IEnumerable<int> Prop { get; set; } = new List<int>();
}

"env": {
  "BUILD_ENV": "local"
} 

"envFile": "${workspaceFolder}/.env",

请参见platform-specific properties