yavsc/.vscode/launch.json

46 lines
1.6 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": [
2026-06-04 22:04:20 +01:00
{
2026-06-20 15:01:03 +01:00
"name": "API",
2026-06-04 22:04:20 +01:00
"type": "dotnet",
"request": "launch",
"projectPath": "${workspaceFolder}/src/Api/Api.csproj"
},
{
2026-06-20 15:01:03 +01:00
"name": "Yavsc.Org",
2026-06-04 19:18:28 +01:00
"type": "dotnet",
"request": "launch",
2026-07-06 03:17:23 +01:00
"projectPath": "${workspaceFolder}/src/Yavsc.Org/Yavsc.Org.csproj",
2026-06-15 00:46:50 +01:00
},
2026-06-25 00:08:25 +01:00
{
"name": "Yavsc.Blogs",
"type": "dotnet",
"request": "launch",
"projectPath": "${workspaceFolder}/src/Yavsc.Blogs/Yavsc.Blogs.csproj"
},
2026-05-29 01:29:36 +01:00
{
"name": "PostIt",
"type": "dotnet",
"request": "launch",
"projectPath": "${workspaceFolder}/src/PostIt/PostIt.Desktop/PostIt.Desktop.csproj",
},
{
"name": "Test PostIt.Android launch (Xamarin.UITest)",
"type": "coreclr",
"request": "launch",
"program": "${workspaceFolder}/src/PostIt.Tests/bin/Debug/net10.0/PostIt.Tests.dll",
"args": [
"--filter-method",
"PostIt.Tests.AndroidAppLaunchTests.PostIt_starts_and_draws_a_first_frame_on_the_emulator"
],
"cwd": "${workspaceFolder}/src/PostIt.Tests",
"console": "integratedTerminal",
"stopAtEntry": false
2025-03-02 16:53:36 +00:00
}
]
}