我想使用VSCode调试器,并想在启动应用程序之前设置环境变量。 Launch文件夹中的配置如下所示。
{
"name": "Launch on iOS",
"type": "nativescript",
"request": "launch",
"platform": "ios",
"appRoot": "${workspaceRoot}",
"sourceMaps": true,
"watch": true,
"environment": [
{
"BUILD_ENV": "local"
}
]
}
这似乎不起作用。我正在使用Mac。
答案 0 :(得分:0)
也许可行:
class A
{
[JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
public IEnumerable<int> Prop { get; set; } = new List<int>();
}
或
"env": {
"BUILD_ENV": "local"
}
或
"envFile": "${workspaceFolder}/.env",