yavsc/.vscode/launch.json

90 lines
3 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"
},
2025-07-07 07:49:18 +01:00
{
2026-02-14 16:54:27 +00:00
"name": "org",
2025-07-07 07:49:18 +01:00
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
2026-02-14 16:54:27 +00:00
"program": "${workspaceFolder}/src/Org/bin/Debug/net9.0/Org.dll",
2025-07-07 07:49:18 +01:00
"args": [],
2026-02-14 16:54:27 +00:00
"cwd": "${workspaceFolder}/src/Org",
2025-07-07 07:49:18 +01:00
"stopAtEntry": false,
2026-02-17 21:50:17 +00:00
"justMyCode": false,
2025-07-07 07:49:18 +01:00
"serverReadyAction": {
"action": "openExternally",
2026-02-22 19:54:10 +00:00
"pattern": "\\bNow listening on:\\s+(https?://\\S+)",
"killOnServerStop": true
2025-07-07 07:49:18 +01:00
},
"env": {
"ASPNETCORE_ENVIRONMENT": "Development"
},
"sourceFileMap": {
2026-02-14 16:54:27 +00:00
"/Views": "${workspaceFolder}/src/Org/Views"
2025-07-07 07:49:18 +01:00
}
},
2025-03-02 16:53:36 +00:00
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-02-14 16:54:27 +00:00
"program": "${workspaceFolder}/src/Web/bin/Debug/net9.0/Web.dll",
2025-03-02 16:53:36 +00:00
"args": [],
2026-02-14 16:54:27 +00:00
"cwd": "${workspaceFolder}/src/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-02-14 16:54:27 +00:00
"preLaunchTask": "build-web",
"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-02-14 16:54:27 +00:00
"name": "dotnet org",
2025-03-02 16:53:36 +00:00
"type": "dotnet",
"request": "launch",
2026-02-14 16:54:27 +00:00
"projectPath": "${workspaceFolder}/src/Org/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
}
}
]
}