skyrim-item-roulette/.vscode/tasks.json

29 lines
788 B
JSON
Raw Normal View History

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",
"problemMatcher": [
"$PapyrusCompiler"
]
},
{
"label": "Build and Reload",
"type": "shell",
"group": "build",
"command": "${workspaceFolder}/build.ps1",
"args": ["-KickVortex", "-Reload"],
2021-05-28 16:30:20 -04:00
"problemMatcher": [
"$PapyrusCompiler"
]
}
]
}