在调试和运行扩展时隐藏“覆盖扩展”警告

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

无论如何我在测试我的扩展时可以隐藏此警告消息吗?

消息说:

[path]用[tempExtensionPath]覆盖扩展名[extensionPath]


作为“默认”,我在launch.json中传递extensionDevelopmentPath参数:

launch.json

{
    "version": "0.1.0",
    "configurations": [
        {
            "name": "Extension",
            "type": "extensionHost",
            "request": "launch",
            "runtimeExecutable": "${execPath}",
            "args": [
                "--extensionDevelopmentPath=${workspaceRoot}"
            ],
            "stopOnEntry": false,
            "sourceMaps": true,
            "outDir": "${workspaceRoot}/out"
        }
    ]
}
visual-studio-code vscode-extensions
1个回答
0
投票

根据这个开放的vscode问题,目前还不可能:

Do Not Show for overwriting extension message

一名微软员工回复:

这个请求对我来说很有意义。我打算在消息中添加Do not show again操作,用户可以选择不再显示此消息。

所以可能有希望。

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