vscode tasks
This commit is contained in:
31
.vscode/tasks.json
vendored
31
.vscode/tasks.json
vendored
@@ -1,14 +1,19 @@
|
||||
{
|
||||
"version": "2.0.0",
|
||||
"tasks": [
|
||||
{
|
||||
"label": "Compile UI",
|
||||
"type": "shell",
|
||||
"command": "pyuic6 ${file} -o ${fileDirname}/${fileBasenameNoExtension}_ui.py",
|
||||
"group": {
|
||||
"kind": "build",
|
||||
"isDefault": true
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
"version": "2.0.0",
|
||||
"tasks": [
|
||||
{
|
||||
"label": "Build Project",
|
||||
"type": "shell",
|
||||
"command": "pyinstaller --noconfirm --onedir --windowed --icon 'C:/Users/aky547/Downloads/VZjRNn1k.ico' --name 'SemesterapparatsManager' --clean --add-data 'C:/Users/aky547/GitHub/SemesterapparatsManager/config.yaml;.' --add-data 'C:/Users/aky547/GitHub/SemesterapparatsManager/icons;.' 'C:/Users/aky547/GitHub/SemesterapparatsManager/main.py'",
|
||||
"group": {
|
||||
"kind": "build",
|
||||
"isDefault": true
|
||||
},
|
||||
"presentation": {
|
||||
"reveal": "always",
|
||||
"panel": "new"
|
||||
},
|
||||
"problemMatcher": "$python"
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user