0
0
mirror of https://github.com/sp-tarkov/launcher.git synced 2025-02-13 03:30:43 -05:00
launcher/project/Launcher.code-workspace
CWXDEV 2bfdb1eeea Feature:
- Remove Cake
- Add build script
- Mimic the same features as Modules
2024-02-16 12:08:15 +00:00

29 lines
403 B
Plaintext

{
"folders": [
{
"path": "."
}
],
"settings": {
"window.title": "SPT-AKI Launcher"
},
"extensions": {
"recommendations": [
"ms-dotnettools.csharp"
]
},
"tasks":{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"type": "shell",
"command": "dotnet build --configuration Release",
"group": {
"kind": "build",
"isDefault": true
}
}
]
}
}