mirror of
https://github.com/actions/runner.git
synced 2026-01-20 11:37:14 +08:00
Rename tasks and run configs
This commit is contained in:
44
.vscode/tasks.json
vendored
44
.vscode/tasks.json
vendored
@@ -2,46 +2,32 @@
|
||||
"version": "2.0.0",
|
||||
"tasks": [
|
||||
{
|
||||
"label": "build listener",
|
||||
"command": "dotnet",
|
||||
"type": "process",
|
||||
"label": "create runner layout",
|
||||
"detail": "Build and Copy all projects, scripts and external dependencies to _layout from src (run this the first time or after deleting _layout)",
|
||||
"command": "./dev.sh",
|
||||
"windows": {
|
||||
"command": "dev.cmd"
|
||||
},
|
||||
"args": [
|
||||
"msbuild",
|
||||
"-t:Build",
|
||||
"-p:PackageRuntime=\"osx-x64\"",
|
||||
"-p:BUILDCONFIG=\"Debug\"",
|
||||
"-p:RunnerVersion=\"2.278.0\"",
|
||||
"./dir.proj",
|
||||
"layout"
|
||||
],
|
||||
"options": {
|
||||
"cwd": "${workspaceFolder}/src"
|
||||
"cwd": "${workspaceFolder}/src"
|
||||
},
|
||||
"problemMatcher": "$msCompile",
|
||||
|
||||
},
|
||||
{
|
||||
"label": "deploy to _layout",
|
||||
"detail": "Build and Deploy all projects, scripts and external dependencies to _layout from src (run this the first time or after deleting _layout)",
|
||||
"label": "build runner layout",
|
||||
"detail": "Build and Copy all projects to _layout from src (run this on code change)",
|
||||
"command": "./dev.sh",
|
||||
"windows": {
|
||||
"command": "dev.cmd"
|
||||
},
|
||||
"args": ["layout"],
|
||||
"args": [
|
||||
"build"
|
||||
],
|
||||
"options": {
|
||||
"cwd": "${workspaceFolder}/src"
|
||||
},
|
||||
},
|
||||
{
|
||||
"label": "build to _layout",
|
||||
"detail": "Build and Deploy all projects to _layout from src (run this on code change)",
|
||||
"command": "./dev.sh",
|
||||
"windows": {
|
||||
"command": "dev.cmd"
|
||||
},
|
||||
"args": ["build"],
|
||||
"options": {
|
||||
"cwd": "${workspaceFolder}/src"
|
||||
"cwd": "${workspaceFolder}/src"
|
||||
},
|
||||
}
|
||||
],
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user