adding vscode options

This commit is contained in:
2026-03-25 08:34:30 +01:00
parent a2c658de6b
commit c847bebe36
2 changed files with 40 additions and 0 deletions

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

@@ -0,0 +1,16 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Launch",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "prepare",
"program": "${workspaceFolder}/PeopleVille/bin/Debug/net10.0/PeopleVille.dll",
"args": [],
"cwd": "${workspaceFolder}/PeopleVille",
"console": "internalConsole",
"stopAtEntry": false
}
]
}