summaryrefslogtreecommitdiff
path: root/.vscode
diff options
context:
space:
mode:
authorYehonal <yehonal.azeroth@gmail.com>2021-05-04 11:35:24 +0200
committerGitHub <noreply@github.com>2021-05-04 11:35:24 +0200
commitf6c6123d85d467134ee24565c9d98efdfc3a0c41 (patch)
tree2b70863b40601c5f98d2fbe9e8aa51fa150e7ceb /.vscode
parenta1b0c4541762320867aa7e7150c942224c18753d (diff)
feat(docker): production images, integrated ccache and many other improvements (#5551)
Diffstat (limited to '.vscode')
-rw-r--r--.vscode/extensions.json3
-rw-r--r--.vscode/tasks.json68
2 files changed, 69 insertions, 2 deletions
diff --git a/.vscode/extensions.json b/.vscode/extensions.json
index f78da7e8aa..a03767c6f8 100644
--- a/.vscode/extensions.json
+++ b/.vscode/extensions.json
@@ -10,6 +10,7 @@
"mhutchie.git-graph",
"github.vscode-pull-request-github",
"eamodio.gitlens",
- "cschlosser.doxdocgen"
+ "cschlosser.doxdocgen",
+ "sanaajani.taskrunnercode"
]
}
diff --git a/.vscode/tasks.json b/.vscode/tasks.json
index eeba203d70..fab16be001 100644
--- a/.vscode/tasks.json
+++ b/.vscode/tasks.json
@@ -2,7 +2,51 @@
"version": "2.0.0",
"tasks": [
{
- "label": "build",
+ "label": "AzerothCore: Dashboard",
+ "type": "shell",
+ "command": "./acore.sh",
+ "group": "none",
+ "presentation": {
+ "reveal": "always",
+ "panel": "new"
+ },
+ "problemMatcher": []
+ },
+ {
+ "label": "AzerothCore: Import/update database",
+ "type": "shell",
+ "command": "./acore.sh db-assembler import-all",
+ "group": "build",
+ "presentation": {
+ "reveal": "always",
+ "panel": "new"
+ },
+ "problemMatcher": []
+ },
+ {
+ "label": "AzerothCore: download client-data",
+ "type": "shell",
+ "command": "./acore.sh client-data",
+ "group": "none",
+ "presentation": {
+ "reveal": "always",
+ "panel": "new"
+ },
+ "problemMatcher": []
+ },
+ {
+ "label": "AzerothCore: Clean build",
+ "type": "shell",
+ "command": "./acore.sh compiler clean",
+ "group": "build",
+ "presentation": {
+ "reveal": "always",
+ "panel": "new"
+ },
+ "problemMatcher": []
+ },
+ {
+ "label": "AzerothCore: Build",
"type": "shell",
"command": "./acore.sh compiler build",
"group": {
@@ -14,6 +58,28 @@
"panel": "new"
},
"problemMatcher": []
+ },
+ {
+ "label": "AzerothCore: Run authserver (restarter)",
+ "type": "shell",
+ "command": "./acore.sh run-authserver",
+ "group": "none",
+ "presentation": {
+ "reveal": "always",
+ "panel": "new"
+ },
+ "problemMatcher": []
+ },
+ {
+ "label": "AzerothCore: Run worldserver (restarter)",
+ "type": "shell",
+ "command": "./acore.sh run-worldserver",
+ "group": "none",
+ "presentation": {
+ "reveal": "always",
+ "panel": "new"
+ },
+ "problemMatcher": []
}
]
}