- 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.
24 lines
584 B
JSON
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"
|
|
}
|
|
]
|
|
}
|