-
-
Notifications
You must be signed in to change notification settings - Fork 0
Architecture
mleem97 edited this page May 10, 2026
·
2 revisions
This page defines the architectural patterns and layering used in the GregCore Modmanager.
- GregCore Modmanager is the Avalonia UI-based desktop application.
- It targets .NET 9 for optimal performance and cross-platform compatibility.
The project follows a strict 4-layer separation:
- Presentation: Avalonia UI and ViewModels.
- Domain: Business logic and interfaces.
- Infrastructure: Steam API, Telemetry, and Persistence.
- Extensions: MelonLoader plugins (.NET 6).
- Keep MAUI app functional while introducing Avalonia in parallel.
- Move reusable business logic from MAUI-only concerns into shared services.
- Replace page-by-page UI workflows in Avalonia.
- Transition packaging and release channels to multi-platform outputs.
- Compact information density for usability.
- Keyboard-first interaction patterns.
- Strict Steam publish cooldown enforcement.
- Fully custom window chrome to avoid duplicate title bars.