yavsc/.vscode/launch.json

75 lines
2.4 KiB
JSON
Raw Normal View History

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": [
2025-08-19 21:31:49 +01:00
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",
"program": "${workspaceFolder}/src/cli/bin/Debug/net9.0/cli.dll",
"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-03-01 02:13:26 +00:00
"program": "${workspaceFolder}/src/Yavsc.Web/bin/Debug/net9.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-02-14 16:54:27 +00:00
"program": "${workspaceFolder}/src/Api/bin/Debug/net9.0/Api.dll",
2025-03-02 16:53:36 +00:00
"args": [],
"cwd": "${workspaceFolder}/src/Api",
"stopAtEntry": false,
"console": "internalConsole"
},
{
2026-03-01 20:14:54 +00:00
"name": "Org",
2025-03-02 16:53:36 +00:00
"type": "dotnet",
"request": "launch",
2026-03-01 02:13:26 +00:00
"projectPath": "${workspaceFolder}/src/Yavsc.Org/Yavsc.Org.csproj",
2025-03-02 16:53:36 +00:00
"serverReadyAction": {
"action": "openExternally",
"pattern": "\\bNow listening on:\\s+(https?://\\S+)"
2025-07-10 15:19:28 +01:00
},
"presentation": {
"hidden": false,
"group": "run",
"order": 1
2025-03-02 16:53:36 +00:00
}
2026-03-01 02:13:26 +00:00
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
}
]
}