Files
Mimante/Mimante/.vscode/launch.json
T
Alby96 7ca504a70a Add utility classes for theme management, waiting, watched products, and notifications
- Implement ThemeManager for dynamic light/dark theme switching in the application.
- Create Wait class for cancellable delays without exceptions for smoother user experience.
- Introduce WatchedProductsStore to manage and persist watched products in JSON format.
- Add WindowsNotifier for system notifications to inform users of important events.
- Develop ProductViewModel to encapsulate product data and manage UI interactions effectively.
2026-08-04 21:49:53 +02:00

24 lines
584 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Debug AutoBidder (WPF)",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
"program": "${workspaceFolder}/bin/Debug/net10.0-windows/AutoBidder.exe",
"args": [],
"cwd": "${workspaceFolder}",
"console": "internalConsole",
"stopAtEntry": false,
"enableStepFiltering": true
},
{
"name": "Attach to AutoBidder (processo già avviato)",
"type": "coreclr",
"request": "attach",
"processName": "AutoBidder.exe"
}
]
}