我开始我的简单代码片段扩展,当我调试 VSCode 时,它会自动创建一个./vsce
包含配置文件的文件夹。
当我在我的扩展文件夹中运行F5时,我在下面看到此消息。
但是 VSCode 使用配置创建了文件,我该如何解决这个问题?
Please set up the launch configuration for your application.
我开始我的简单代码片段扩展,当我调试 VSCode 时,它会自动创建一个./vsce
包含配置文件的文件夹。
当我在我的扩展文件夹中运行F5时,我在下面看到此消息。
但是 VSCode 使用配置创建了文件,我该如何解决这个问题?
Please set up the launch configuration for your application.
这个文件是错误.vscode/launch.json
的,需要添加到git这个文件夹中,改成这样:
// A launch configuration that compiles the extension and then opens it inside a new window
{
"version": "0.1.0",
"configurations": [
{
"name": "Launch Extension",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": ["--extensionDevelopmentPath=${workspaceRoot}" ]
}
]
}