【发布时间】:2016-06-26 05:03:35
【问题描述】:
如何在 launch.json 中设置调试器?
目前,我有
{
"version": "0.1.0",
"configurations": [
{
// Name of configuration
// Appears in the launch configuration drop down menu.
"name": "Launch Lukecxu",
"request": "launch",
"cwd": "/Users/lukexu/lukecxu",
"type": "node",
// Automatically stop program after launch.
"stopOnEntry": true,
"program": "${workspaceRoot}"
}
]
}
我在网上找到了一些,但它不起作用。它说我应该将“类型”设置为单声道,但是当我将它设置为单声道时,它说不支持类型。
对于我的系统设置,我做了 brew install mono 并且我还安装了 ionide。
现在我无法单击装订线设置任何断点,当我按下 F5 时,它显示"Cannot launch program '/Users/lukexu/lukecxu'; configuring source maps might help."
是否有在 VSCode 中设置 F# 调试器的教程?
【问题讨论】:
标签: f# visual-studio-code ionide