Fixes the contact page

This commit is contained in:
Paul Schneider 2026-06-04 19:18:28 +01:00
commit 1054deaebf
4 changed files with 19 additions and 15 deletions

8
.vscode/launch.json vendored
View file

@ -4,11 +4,17 @@
// Pour plus d'informations, visitez : https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "C#: Yavsc.Org Debug",
"type": "dotnet",
"request": "launch",
"projectPath": "${workspaceFolder}/src/Yavsc.Org/Yavsc.Org.csproj"
},
{
"name": "Yavsc.Org",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
"preLaunchTask": "build-web",
"program": "${workspaceFolder}/src/Yavsc.Org/bin/Debug/net10.0/Yavsc.Org.dll",
"args": [],
"cwd": "${workspaceFolder}/src/Yavsc.Org",

5
.vscode/tasks.json vendored
View file

@ -19,12 +19,11 @@
"command": "dotnet",
"args": ["build"],
"options": {
"cwd": "src/Yavsc"
"cwd": "src/Yavsc.Org"
},
"group": {
"kind": "build"
},
"isBackground": true
}
},
{
"label": "build-webapi",