Files
ClaudeDo/src/ClaudeDo.Installer/Core/InstallerMode.cs
Mika Kuns 97fb215ce6 feat(installer): replace sync ModeDetector with async InstallModeDetector
Placeholder edit to App.xaml.cs to keep the project building until Task 11
wires the new async detector.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-15 09:19:16 +02:00

9 lines
277 B
C#

namespace ClaudeDo.Installer.Core;
public enum InstallerMode
{
FreshInstall, // No install.json present -> run full wizard
Update, // install.json present, newer release available
Config, // install.json present, no update (or API unreachable)
}