Add solution configuration and tooling

- .gitignore for .NET/Blazor project
- VS Code launch and task configurations
- Solution file (Duempelkas.slnx)
- NuGet configuration
This commit is contained in:
2026-03-31 17:12:25 +02:00
commit 8b09173ccc
5 changed files with 223 additions and 0 deletions

16
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,16 @@
{
"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"
}
]
}