Files
qhmes/.vscode/tasks.json

93 lines
2.5 KiB
JSON
Raw Normal View History

{
"version": "2.0.0",
"tasks": [
2026-05-19 10:11:20 +08:00
{
"label": "JeecgBoot: compile",
"type": "shell",
"command": "mvn",
"args": [
"compile",
"-pl",
"jeecg-module-system/jeecg-system-start",
"-am",
"-DskipTests",
"-q"
],
"options": {
"cwd": "${workspaceFolder}/jeecg-boot",
"env": {
"JAVA_HOME": "C:\\Program Files\\Java\\jdk-17"
}
},
"problemMatcher": "$javac",
"group": "build"
},
{
"label": "YY.Admin: restore",
"type": "process",
"command": "C:\\Program Files\\dotnet\\dotnet.exe",
"args": ["restore", "YY.Admin.Entry.sln"],
"options": {
"cwd": "${workspaceFolder}\\yy-admin-master"
},
"problemMatcher": "$msCompile"
},
{
"label": "YY.Admin: build",
"type": "process",
"command": "C:\\Program Files\\dotnet\\dotnet.exe",
"args": ["build", "YY.Admin.Entry.sln", "-c", "Debug"],
"options": {
"cwd": "${workspaceFolder}\\yy-admin-master"
},
"dependsOn": "YY.Admin: restore",
"problemMatcher": "$msCompile",
"group": "build"
},
{
"label": "YY.Admin: run",
"type": "process",
"command": "${workspaceFolder}\\yy-admin-master\\YY.Admin\\bin\\Debug\\net8.0-windows10.0.19041\\win-x64\\YY.Admin.exe",
"options": {
"cwd": "${workspaceFolder}\\yy-admin-master\\YY.Admin\\bin\\Debug\\net8.0-windows10.0.19041\\win-x64"
},
"dependsOn": "YY.Admin: build",
"problemMatcher": []
},
2026-05-28 17:15:20 +08:00
{
"label": "jeecgboot-vue3: dev",
"type": "shell",
"command": "pnpm run dev",
"options": {
"cwd": "${workspaceFolder}/jeecgboot-vue3"
},
"isBackground": true,
"problemMatcher": {
"owner": "vite",
"pattern": { "regexp": "^$" },
"background": {
"activeOnStart": true,
"beginsPattern": ".",
"endsPattern": "(Local:|ready in|http://localhost)"
}
}
},
{
"label": "YY.Admin: run (script)",
"type": "process",
"command": "C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\powershell.exe",
"args": [
"-NoProfile",
"-ExecutionPolicy",
"Bypass",
"-File",
"${workspaceFolder}\\yy-admin-master\\.vscode\\run-yyadmin.ps1"
],
"options": {
"cwd": "${workspaceFolder}\\yy-admin-master"
},
"problemMatcher": "$msCompile"
}
]
}