2025-03-02 16:53:36 +00:00
|
|
|
{
|
|
|
|
|
// Utilisez IntelliSense pour en savoir plus sur les attributs possibles.
|
|
|
|
|
// Pointez pour afficher la description des attributs existants.
|
|
|
|
|
// Pour plus d'informations, visitez : https://go.microsoft.com/fwlink/?linkid=830387
|
|
|
|
|
"version": "0.2.0",
|
|
|
|
|
"configurations": [
|
2026-06-04 19:18:28 +01:00
|
|
|
{
|
|
|
|
|
"name": "C#: Yavsc.Org Debug",
|
|
|
|
|
"type": "dotnet",
|
|
|
|
|
"request": "launch",
|
|
|
|
|
"projectPath": "${workspaceFolder}/src/Yavsc.Org/Yavsc.Org.csproj"
|
|
|
|
|
},
|
2026-06-04 12:13:37 +01:00
|
|
|
{
|
|
|
|
|
"name": "Yavsc.Org",
|
|
|
|
|
"type": "coreclr",
|
|
|
|
|
"request": "launch",
|
2026-06-04 19:18:28 +01:00
|
|
|
"preLaunchTask": "build-web",
|
2026-06-04 12:13:37 +01:00
|
|
|
"program": "${workspaceFolder}/src/Yavsc.Org/bin/Debug/net10.0/Yavsc.Org.dll",
|
|
|
|
|
"args": [],
|
|
|
|
|
"cwd": "${workspaceFolder}/src/Yavsc.Org",
|
|
|
|
|
"stopAtEntry": false,
|
|
|
|
|
"serverReadyAction": {
|
|
|
|
|
"action": "openExternally",
|
|
|
|
|
"pattern": "\\bNow listening on:\\s+(https?://\\S+)"
|
|
|
|
|
},
|
|
|
|
|
"env": {
|
|
|
|
|
"ASPNETCORE_ENVIRONMENT": "Development"
|
|
|
|
|
},
|
|
|
|
|
"sourceFileMap": {
|
|
|
|
|
"/Views": "${workspaceFolder}/Views"
|
|
|
|
|
}
|
|
|
|
|
},
|
2025-07-16 00:47:50 +01:00
|
|
|
{
|
2026-02-09 01:03:33 +00:00
|
|
|
"name": "cli",
|
2025-07-16 00:47:50 +01:00
|
|
|
"type": "coreclr",
|
|
|
|
|
"request": "launch",
|
|
|
|
|
"preLaunchTask": "build",
|
2026-06-04 12:13:37 +01:00
|
|
|
"program": "${workspaceFolder}/src/cli/bin/Debug/net10.0/cli.dll",
|
2025-07-16 00:47:50 +01:00
|
|
|
"args": [],
|
|
|
|
|
"cwd": "${workspaceFolder}",
|
|
|
|
|
"stopAtEntry": false,
|
|
|
|
|
"console": "internalConsole"
|
|
|
|
|
},
|
2026-02-09 01:03:33 +00:00
|
|
|
{
|
2026-02-14 16:54:27 +00:00
|
|
|
"name": "Web",
|
2025-03-02 16:53:36 +00:00
|
|
|
"type": "coreclr",
|
|
|
|
|
"request": "launch",
|
|
|
|
|
"preLaunchTask": "build",
|
2026-06-04 12:13:37 +01:00
|
|
|
"program": "${workspaceFolder}/src/Yavsc.Web/bin/Debug/net10.0/Yavsc.Web.dll",
|
2025-03-02 16:53:36 +00:00
|
|
|
"args": [],
|
2026-03-01 02:13:26 +00:00
|
|
|
"cwd": "${workspaceFolder}/src/Yavsc.Web",
|
2025-03-02 16:53:36 +00:00
|
|
|
"stopAtEntry": false,
|
|
|
|
|
"serverReadyAction": {
|
|
|
|
|
"action": "openExternally",
|
|
|
|
|
"pattern": "\\bNow listening on:\\s+(https?://\\S+)"
|
|
|
|
|
},
|
|
|
|
|
"env": {
|
|
|
|
|
"ASPNETCORE_ENVIRONMENT": "Development"
|
|
|
|
|
},
|
|
|
|
|
"sourceFileMap": {
|
2026-02-14 16:54:27 +00:00
|
|
|
"/Views": "${workspaceFolder}/src/Web/Views"
|
2025-03-02 16:53:36 +00:00
|
|
|
}
|
2026-02-09 01:03:33 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
"name": "Api",
|
2025-03-02 16:53:36 +00:00
|
|
|
"type": "coreclr",
|
|
|
|
|
"request": "launch",
|
2026-03-01 02:13:26 +00:00
|
|
|
"preLaunchTask": "build-webapi",
|
2026-06-04 12:13:37 +01:00
|
|
|
"program": "${workspaceFolder}/src/Api/bin/Debug/net10.0/Api.dll",
|
2025-03-02 16:53:36 +00:00
|
|
|
"args": [],
|
|
|
|
|
"cwd": "${workspaceFolder}/src/Api",
|
|
|
|
|
"stopAtEntry": false,
|
|
|
|
|
"console": "internalConsole"
|
|
|
|
|
},
|
2026-05-29 01:29:36 +01:00
|
|
|
{
|
|
|
|
|
"name": "PostIt",
|
|
|
|
|
"type": "dotnet",
|
|
|
|
|
"request": "launch",
|
|
|
|
|
"projectPath": "${workspaceFolder}/src/PostIt/PostIt.Desktop/PostIt.Desktop.csproj",
|
|
|
|
|
|
2025-03-02 16:53:36 +00:00
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|