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>
9 lines
277 B
C#
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)
|
|
}
|