tribufu-java/.vscode/tasks.json
2021-04-17 09:07:34 -03:00

21 lines
437 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "Copyright",
"type": "shell",
"windows": {
"command": "python",
},
"linux": {
"command": "python3",
},
"osx": {
"command": "python3",
},
"args": [
"./Scripts/Copyright.py"
],
}
]
}