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
}
]
}

24
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,24 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/PeopleVille/PeopleVille.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
},
{
"label": "prepare",
"dependsOn": [
"build"
],
"dependsOrder": "parallel"
}
]
}