mirror of
https://github.com/tribufu/tribufu-rust
synced 2026-06-01 09:42:37 +00:00
Create VSCode Tasks
This commit is contained in:
parent
74532a9ace
commit
4bdc0f80c5
3 changed files with 138 additions and 0 deletions
37
.vscode/tasks.json
vendored
Normal file
37
.vscode/tasks.json
vendored
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
{
|
||||
"version": "2.0.0",
|
||||
"tasks": [
|
||||
{
|
||||
"label": "Package (Windows)",
|
||||
"type": "shell",
|
||||
"command": "python",
|
||||
"args": [
|
||||
"./Scripts/Package.py"
|
||||
],
|
||||
},
|
||||
{
|
||||
"label": "Package (Linux)",
|
||||
"type": "shell",
|
||||
"command": "python3",
|
||||
"args": [
|
||||
"./Scripts/Package.py"
|
||||
],
|
||||
},
|
||||
{
|
||||
"label": "Copyright (Windows)",
|
||||
"type": "shell",
|
||||
"command": "python",
|
||||
"args": [
|
||||
"./Scripts/Copyright.py"
|
||||
],
|
||||
},
|
||||
{
|
||||
"label": "Copyright (Linux)",
|
||||
"type": "shell",
|
||||
"command": "python3",
|
||||
"args": [
|
||||
"./Scripts/Copyright.py"
|
||||
],
|
||||
}
|
||||
]
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue