The umbrella package for application authors. It brings in the standard build, compiler, and runtime pieces for source-generated Avalonia XAML.
<PackageReference Include="XamlToCSharpGenerator" Version="x.y.z" />
The umbrella package is the recommended starting point for applications because it bundles the normal pieces together:
XamlToCSharpGenerator.BuildUse individual packages only when you have a concrete reason to split the surface.
Most application authors do not want to compose build imports, generator payloads, and runtime dependencies manually. The umbrella package exists so a normal app can adopt AXSG with one reference and move directly to authored XAML, diagnostics, and runtime validation.
This package does not make the lower-level artifacts irrelevant. You still go to the lower-level packages when you need:
It also does not remove the need for the lower-level docs. Once you move beyond the default install path, the package guides and namespace summaries remain the authoritative way to locate the real implementation layer for a feature.