2021-05-28 16:30:20 -04:00
|
|
|
{
|
|
|
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
|
|
|
// for the documentation about the tasks.json format
|
|
|
|
"version": "2.0.0",
|
|
|
|
"tasks": [
|
|
|
|
{
|
|
|
|
"label": "Build",
|
|
|
|
"type": "shell",
|
|
|
|
"group": {
|
|
|
|
"isDefault": true,
|
|
|
|
"kind": "build"
|
|
|
|
},
|
|
|
|
"command": "${workspaceFolder}/build.ps1",
|
2021-05-29 09:10:46 -04:00
|
|
|
"args": ["-KickVortex"],
|
|
|
|
"problemMatcher": [
|
|
|
|
"$PapyrusCompiler"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"label": "Build and Reload",
|
|
|
|
"type": "shell",
|
|
|
|
"group": {
|
|
|
|
"isDefault": true,
|
|
|
|
"kind": "build"
|
|
|
|
},
|
|
|
|
"command": "${workspaceFolder}/build.ps1",
|
|
|
|
"args": ["-KickVortex", "-Reload"],
|
2021-05-28 16:30:20 -04:00
|
|
|
"problemMatcher": [
|
|
|
|
"$PapyrusCompiler"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|