{ // 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"], "problemMatcher": [ "$PapyrusCompiler" ] } ] }