0
0
mirror of https://github.com/sp-tarkov/launcher.git synced 2025-02-13 06:50:43 -05:00
launcher/project/Launcher.code-workspace

29 lines
399 B
Plaintext
Raw Normal View History

2023-03-03 19:25:33 +00:00
{
"folders": [
{
"path": "."
}
],
"settings": {
2024-05-21 20:15:19 +01:00
"window.title": "SPT Launcher"
2023-03-03 19:25:33 +00:00
},
"extensions": {
"recommendations": [
"ms-dotnettools.csharp"
]
},
"tasks":{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"type": "shell",
"command": "dotnet build --configuration Release",
2023-03-03 19:25:33 +00:00
"group": {
"kind": "build",
"isDefault": true
}
}
]
}
}