Add Copyright Script

This commit is contained in:
GuilhermeWerner 2021-04-17 09:07:34 -03:00
parent 324a79e82f
commit b7e1f0dec5
2 changed files with 56 additions and 0 deletions

21
.vscode/tasks.json vendored Normal file
View file

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