Private
Public Access
1
0

add tasks and launch for vscode

This commit is contained in:
2026-05-24 04:22:26 +02:00
parent 40f7b148ac
commit bcd4d34111
10 changed files with 146 additions and 18 deletions

17
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,17 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Vintage Story Client (Beehives)",
"type": "dotnet",
"request": "launch",
"projectPath": "${workspaceFolder}/OrekiWoofsBeehives/OrekiWoofsBeehives.csproj"
},
{
"name": "Vintage Story Client (RoamingBees)",
"type": "dotnet",
"request": "launch",
"projectPath": "${workspaceFolder}/RoamingBees/RoamingBees/RoamingBees.csproj"
}
]
}