diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 7f0b23e..20f1fa6 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -2,7 +2,7 @@ "version": "2.0.0", "tasks": [ { - "label": "🛠 Setup Virtual Environment", + "label": "Setup Virtual Environment", "type": "shell", "command": "${input:pythonPath}", "args": ["setup.py"], @@ -13,25 +13,12 @@ } }, { - "label": "🔨 Build Executable", - "type": "shell", - "command": "venv\\Scripts\\activate.ps1", - "problemMatcher": [], - "group": { - "kind": "build", - "isDefault": true - } - }, - { - "label": "🚀 Run Build Script", + "label": "Run Build Script", "type": "shell", "command": "venv\\Scripts\\python.exe", "args": [ "build.py" ], - // "options": { - // "cwd": "${workspaceFolder}/venv/Scripts" - // }, "problemMatcher": [], "group": { "kind": "build", @@ -42,9 +29,8 @@ "label": "🛠 Full Build", "type": "shell", "dependsOn": [ - "🛠 Setup Virtual Environment", - "🔨 Build Executable", - "🚀 Run Build Script" + "Setup Virtual Environment", + "Run Build Script" ], "dependsOrder": "sequence", "problemMatcher": [],