vscode中启动浏览器的tasks.json
Posted 小小高
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vscode中启动浏览器的tasks.json相关的知识,希望对你有一定的参考价值。
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "0.1.0",
"command": "firefox",
"windows": {
"command": "D:/Program Files/Mozilla Firefox/firefox.exe" //firefox浏览器的路径
},
"isShellCommand": true,
"args": [
"${file}"
],
"showOutput": "always"
}
以上是关于vscode中启动浏览器的tasks.json的主要内容,如果未能解决你的问题,请参考以下文章
VSCode仅为许多项目之一创建Launch.json和Tasks.json文件
如何在 vscode 中访问 tasks.json 中的 .env 变量?
如何在Visual Studio中运行任务表单.vscode / tasks.json(2019或更高版本)
开发环境Ubuntu 中使用 VSCode 开发 C/C++ ④ ( 创建 tasks.json 编译器构建配置文件 | tasks.json 编译器构建配置文件分析 )
开发环境Ubuntu 中使用 VSCode 开发 C/C++ ④ ( 创建 tasks.json 编译器构建配置文件 | tasks.json 编译器构建配置文件分析 )