vscode终端使用


vscode终端和自带的cmd环境变量不一样
打开settings.json增加 环境变量实现 vscode终端运行任何任务
这里不知道自带的环境变量是什么或者抄起来麻烦可以直接打开cmd输入

echo %PATH%

输出的内容就是当前系统的环境变量

"terminal.integrated.env.windows": {
        "PATH":"D:\\phpstudy_pro\\Extensions\\php\\php7.4.3nts;C:\\Windows\\System32;D:\\Program Files\\Git\\bin;D:\\Program Files\\nodejs",
    },

环境变量设置完成就可以自定义任务了

{
    // See https://go.microsoft.com/fwlink/?LinkId=733558
    // for the documentation about the tasks.json format
    "version": "2.0.0",
    "tasks": [
        {
            "label": "build",
            "type": "shell",
            "command": "$currentDate = Get-Date -Format 'yyyyMMdd_HHmm';del ./dist/*;7z a -tzip ./dist/dist_$currentDate.zip ./*  '-xr!dist/' '-xr!.vscode/' '-xr!.git/';cmd /c 'git log --oneline > ./README.txt'"
        }
    ]
}

声明:小小博客|版权所有,违者必究|如未注明,均为原创|本网站采用BY-NC-SA协议进行授权

转载:转载请注明原文链接 - vscode终端使用


Carpe Diem and Do what I like