我正在使用VSCode C / C ++扩展来调试Rust应用程序。我的启动配置是:
{
"name": "Debug",
"type": "cppvsdbg",
"request": "launch",
"program": "${workspaceRoot}/target/debug/hello_world.exe",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"logging": {
"moduleLoad": false,
"engineLogging": false,
"exceptions": true,
"programOutput": true
}
}
使用此功能时,每次调试应用程序时都会得到以下输出:
-------------------------------------------------------------------
You may only use the C/C++ Extension for Visual Studio Code with
Visual Studio Code, Visual Studio or Visual Studio for Mac software
to help you develop and test your applications.
-------------------------------------------------------------------
看起来很琐碎,但这会在原本干净的环境中增加不必要的视觉噪音。
如何禁用此功能?