rimworld-mod-template/.vscode/tasks.json

15 lines
330 B
JSON
Raw Normal View History

2020-06-20 10:23:14 +02:00
{
"version": "2.0.0",
"tasks": [
{
"label": "build dll",
"type": "shell",
"group": {
"kind": "build",
"isDefault": true
},
2020-09-11 16:03:06 +02:00
"command": ".vscode/build.bat",
// "command": "dotnet build .vscode"
2020-06-20 10:23:14 +02:00
},
]
}