Files
duempelkas/.vscode/launch.json
troogs 8b09173ccc Add solution configuration and tooling
- .gitignore for .NET/Blazor project
- VS Code launch and task configurations
- Solution file (Duempelkas.slnx)
- NuGet configuration
2026-03-31 17:12:25 +02:00

17 lines
502 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": ".NET Core Launch (Desktop)",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
"program": "${workspaceFolder}/src/Duempelkas.Desktop/bin/Debug/net10.0/Duempelkas.Desktop.dll",
"args": [],
"cwd": "${workspaceFolder}/src/Duempelkas.Desktop",
"stopAtEntry": false,
"console": "internalConsole"
}
]
}