Standalone WPF app (ClaudeDo.Installer) that handles full installation and ongoing configuration of ClaudeDo. Two modes: wizard for first run, tabbed settings panel for subsequent launches. Page-based extensibility via IInstallerPage interface — adding new config sections requires only one new class. Install pipeline: dotnet publish, deploy binaries, write configs, init DB (via SchemaInitializer from ClaudeDo.Data), register Windows Service, create shortcuts. Dark theme matching the Avalonia app (forest teal accent). Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
14 lines
567 B
Plaintext
14 lines
567 B
Plaintext
<Solution>
|
|
<Folder Name="/src/">
|
|
<Project Path="src/ClaudeDo.App/ClaudeDo.App.csproj" />
|
|
<Project Path="src/ClaudeDo.Data/ClaudeDo.Data.csproj" />
|
|
<Project Path="src/ClaudeDo.Ui/ClaudeDo.Ui.csproj" />
|
|
<Project Path="src/ClaudeDo.Worker/ClaudeDo.Worker.csproj" />
|
|
<Project Path="src/ClaudeDo.Installer/ClaudeDo.Installer.csproj" />
|
|
</Folder>
|
|
<Folder Name="/tests/">
|
|
<Project Path="tests/ClaudeDo.Ui.Tests/ClaudeDo.Ui.Tests.csproj" />
|
|
<Project Path="tests/ClaudeDo.Worker.Tests/ClaudeDo.Worker.Tests.csproj" />
|
|
</Folder>
|
|
</Solution>
|