mirror of
https://github.com/tribufu/sdk-rust
synced 2025-06-15 18:54:19 +00:00
38 lines
858 B
JSON
38 lines
858 B
JSON
{
|
|
"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"
|
|
],
|
|
}
|
|
]
|
|
}
|