yavsc/.vscode/launch.json

68 lines
2 KiB
JSON
Raw Normal View History

2025-03-02 16:53:36 +00:00
{
2026-08-24 16:26:23 +01: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-09-13 23:29:06 +01:00
{
"name": "PostIt Desktop",
"type": "dotnet",
"request": "launch",
"projectPath": "${workspaceFolder}/src/PostIt/PostIt.Desktop/PostIt.Desktop.csproj"
},
{
"name": "PostIt Desktop local",
"type": "coreclr",
"request": "launch",
"program": "${workspaceFolder}/src/PostIt/PostIt.Desktop/bin/Debug/net10.0/PostIt.Desktop.dll",
"env": {
"POSTIT_SETTINGS_JSON": "/home/paul/Workspace/yavsc/src/PostIt/PostIt/postit-settings.json"
},
"preLaunchTask": "dotnet: build-postit-desktop"
},
2026-08-24 16:26:23 +01:00
{
2026-08-25 19:20:03 +01:00
"name": "Android Debug",
2026-08-23 18:34:34 +01:00
"type": "mono",
"preLaunchTask": "run-debug-android",
"request": "attach",
"address": "localhost",
2026-08-25 19:20:03 +01:00
"port": 55555
2026-08-23 18:34:34 +01:00
},
{
2026-08-25 19:20:03 +01:00
"name": "Android Attach - Debug",
2026-08-23 18:34:34 +01:00
"type": "mono",
"request": "attach",
"address": "localhost",
2026-08-25 19:20:03 +01:00
"port": 55555
2026-08-23 18:34:34 +01:00
},
2026-08-24 16:26:23 +01:00
{
2026-09-13 23:29:06 +01:00
"name": "Yavsc API",
2026-08-24 16:26:23 +01:00
"type": "dotnet",
"request": "launch",
2026-09-13 23:29:06 +01:00
"projectPath": "${workspaceFolder}/src/Yavsc.Api/Yavsc.Api.csproj"
2026-08-24 16:26:23 +01:00
},
{
2026-08-25 19:20:03 +01:00
"name": "Yavsc Org",
2026-08-24 16:26:23 +01:00
"type": "dotnet",
"request": "launch",
"projectPath": "${workspaceFolder}/src/Yavsc.Org/Yavsc.Org.csproj",
},
{
2026-08-25 19:20:03 +01:00
"name": "Yavsc Blogs",
2026-08-24 16:26:23 +01:00
"type": "dotnet",
"request": "launch",
"projectPath": "${workspaceFolder}/src/Yavsc.Blogs/Yavsc.Blogs.csproj"
},
2026-09-13 23:29:06 +01:00
2026-08-24 16:26:23 +01:00
{
"name": "Test PostIt.Android launch (Xamarin.UITest)",
"type": "coreclr",
"request": "launch",
"program": "${workspaceFolder}/src/PostIt/PostIt.Tests/bin/Debug/net10.0/PostIt.Tests.dll",
"args": [],
"cwd": "${workspaceFolder}/src/PostIt/PostIt.Tests",
"console": "integratedTerminal",
"stopAtEntry": false
}
]
2025-03-02 16:53:36 +00:00
}