Vollständige Implementierung des EngineeringSync-Middleware-Tools: - Windows Service (Kestrel :5050) mit FileSystemWatcher + SignalR - WPF Tray-App mit PendingChanges- und Projektverwaltungs-Fenster - Setup-Wizard (8-Schritte-Installer) - SQLite/EF Core Datenschicht (WAL-Modus) - SHA-256-basiertes Debouncing (2s Fenster) - Backup-System mit konfigurierbarer Aufbewahrung Bugfixes & Verbesserungen: - BUG-1: AppDbContext OnConfiguring invertierte Bedingung behoben - BUG-2: Event-Handler-Leak in TrayApp (Fenster-Singleton-Pattern) - BUG-3: ProjectConfigChanged SignalR-Signal in allen CRUD-Endpoints - BUG-5: Rename-Sync löscht alte Datei im Simulations-Ordner - BUG-6: Doppeltes Dispose von SignalR verhindert - BUG-7: Registry-Deinstallation nur EngineeringSync-Eintrag entfernt - S1: Path-Traversal-Schutz via SafeCombine() im SyncManager - E1: FSW Buffer 64KB + automatischer Re-Scan bei Overflow - E2: Retry-Logik (3x) für gesperrte Dateien mit exponentiellem Backoff - E4: Channel.Writer.TryComplete() beim Shutdown - C2: HubMethodNames-Konstanten statt Magic Strings - E3: Pagination in Changes-API (page/pageSize Query-Parameter) - A1: Fire-and-Forget mit try/catch + Logging Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
37 lines
1.5 KiB
C#
37 lines
1.5 KiB
C#
using System.IO;
|
|
using CommunityToolkit.Mvvm.ComponentModel;
|
|
|
|
namespace EngineeringSync.Setup.ViewModels;
|
|
|
|
/// <summary>
|
|
/// Zentrales Datenmodell das durch alle Wizard-Schritte weitergereicht wird.
|
|
/// </summary>
|
|
public partial class WizardState : ObservableObject
|
|
{
|
|
// --- Installationspfad ---
|
|
[ObservableProperty]
|
|
private string _installPath = Path.Combine(
|
|
Environment.GetFolderPath(Environment.SpecialFolder.ProgramFiles),
|
|
"EngineeringSync");
|
|
|
|
// --- Erstes Projekt ---
|
|
[ObservableProperty] private string _projectName = "Mein Projekt";
|
|
[ObservableProperty] private string _engineeringPath = string.Empty;
|
|
[ObservableProperty] private string _simulationPath = string.Empty;
|
|
[ObservableProperty] private bool _watchAllFiles = false;
|
|
[ObservableProperty] private string _fileExtensions = ".jt,.cojt,.xml";
|
|
|
|
// --- Service-Optionen ---
|
|
[ObservableProperty] private bool _autoStartService = true;
|
|
[ObservableProperty] private bool _autoStartTrayApp = true;
|
|
[ObservableProperty] private bool _startAfterInstall = true;
|
|
[ObservableProperty] private bool _createDesktopShortcut = true;
|
|
[ObservableProperty] private bool _createStartMenuEntry = true;
|
|
|
|
// --- Backup-Einstellungen ---
|
|
[ObservableProperty] private bool _backupEnabled = true;
|
|
[ObservableProperty] private bool _backupUseCustomPath = false;
|
|
[ObservableProperty] private string _backupCustomPath = string.Empty;
|
|
[ObservableProperty] private int _maxBackupsPerFile = 0;
|
|
}
|