XamlToCSharpGenerator.Editor.Avalonia
0.1.0-alpha.21
dotnet add package XamlToCSharpGenerator.Editor.Avalonia --version 0.1.0-alpha.21
NuGet\Install-Package XamlToCSharpGenerator.Editor.Avalonia -Version 0.1.0-alpha.21
<PackageReference Include="XamlToCSharpGenerator.Editor.Avalonia" Version="0.1.0-alpha.21" />
<PackageVersion Include="XamlToCSharpGenerator.Editor.Avalonia" Version="0.1.0-alpha.21" />
<PackageReference Include="XamlToCSharpGenerator.Editor.Avalonia" />
paket add XamlToCSharpGenerator.Editor.Avalonia --version 0.1.0-alpha.21
#r "nuget: XamlToCSharpGenerator.Editor.Avalonia, 0.1.0-alpha.21"
#:package XamlToCSharpGenerator.Editor.Avalonia@0.1.0-alpha.21
#addin nuget:?package=XamlToCSharpGenerator.Editor.Avalonia&version=0.1.0-alpha.21&prerelease
#tool nuget:?package=XamlToCSharpGenerator.Editor.Avalonia&version=0.1.0-alpha.21&prerelease
XamlToCSharpGenerator
XamlToCSharpGenerator is a source-generated XAML compiler stack for Avalonia, with optional runtime services, hot reload/hot design support, a reusable language-service core, an Avalonia editor control, a CLI language-server tool, a workspace MCP tool, and a VS Code extension.
The repository ships both a recommended end-user install surface and the lower-level packages used to compose custom tooling, editors, and framework adapters.
<img width="3494" height="1750" alt="image" src="https://github.com/user-attachments/assets/74951ae9-4866-4911-be11-be890f99dc31" />
What Ships
Recommended Install Paths
Avalonia app using the SourceGen backend
<ItemGroup>
<PackageReference Include="XamlToCSharpGenerator" Version="x.y.z" />
</ItemGroup>
<PropertyGroup>
<AvaloniaXamlCompilerBackend>SourceGen</AvaloniaXamlCompilerBackend>
</PropertyGroup>
Minimal bootstrap:
using XamlToCSharpGenerator.Runtime;
public static AppBuilder BuildAvaloniaApp() =>
AppBuilder.Configure<App>()
.UsePlatformDetect()
.UseAvaloniaSourceGeneratedXaml();
VS Code extension
The release pipeline produces a .vsix asset. Install it with:
code --install-extension ./axsg-language-server-x.y.z.vsix
The extension runs the bundled managed language server by default. You only need the CLI tool separately when you want to host the server yourself.
It also includes Avalonia preview support for .xaml and .axaml files through AXSG: Open Avalonia Preview.
Preview sessions can run either Avalonia's XamlX previewer or the AXSG source-generated loader. The default mode is now sourceGenerated, which keeps live unsaved XAML edits in sync in the preview while still rebuilding on save to realign generated output. auto also prefers source-generated preview when AXSG runtime output is available and falls back to Avalonia/XamlX otherwise.
CLI language server tool
dotnet tool install --global XamlToCSharpGenerator.LanguageServer.Tool
axsg-lsp
Use the tool when you want editor integration outside VS Code or when the VS Code extension is configured to launch a custom server.
Package Overview And Usage
XamlToCSharpGenerator
Use this unless you have a specific reason not to. It is the application-facing distribution for Avalonia projects and carries the standard build integration plus runtime bootstrap assemblies.
XamlToCSharpGenerator.Build
Use this when you want build-transitive props/targets only and intend to manage generator/runtime package composition yourself.
XamlToCSharpGenerator.Runtime, Runtime.Core, Runtime.Avalonia
These packages cover runtime loading, URI registries, hot reload, hot design, and Avalonia-specific runtime services.
Use:
Runtimewhen you want the composed runtime package.Runtime.Corewhen you are building framework-neutral runtime infrastructure.Runtime.Avaloniawhen you are integrating directly with Avalonia runtime services.
XamlToCSharpGenerator.LanguageService, Editor.Avalonia, LanguageServer.Tool, and the VS Code extension
These are the tooling-facing artifacts.
Use:
LanguageServicefor custom IDE or editor integrations.Editor.Avaloniafor an in-app AXAML editor surface.LanguageServer.Toolwhen you need a CLI/LSP host.- the VS Code extension when you want the packaged editor experience, including inline C# completion, hover, references, definitions, inlay hints, and semantic highlighting inside attribute expressions, object-element code, and
<![CDATA[ ... ]]>blocks.
Compiler building blocks
The remaining NuGet packages exist for advanced composition:
XamlToCSharpGenerator.Generator: Roslyn generator entrypoint.XamlToCSharpGenerator.Core: parser model, diagnostics, configuration, semantic contracts.XamlToCSharpGenerator.Compiler: incremental host orchestration.XamlToCSharpGenerator.Framework.Abstractions: framework adapter contracts.XamlToCSharpGenerator.ExpressionSemantics: Roslyn-backed expression analysis.XamlToCSharpGenerator.MiniLanguageParsing: shared mini-language parsers.XamlToCSharpGenerator.Avalonia: Avalonia binder and emitter layer.XamlToCSharpGenerator.NoUi: framework-neutral pilot profile.
Core Capabilities
- Source-generated Avalonia XAML backend selected with
AvaloniaXamlCompilerBackend=SourceGen - Compiled-binding-first workflow with semantic type analysis
- Full
x:Bindsupport with typed source resolution, generated event handlers, bind-back, and lifecycle helpers - C# expression bindings with explicit, implicit, shorthand, interpolation, and formatting forms
- Inline C# code via
{CSharp Code=...},<CSharp>...</CSharp>, and<![CDATA[ ... ]]>content blocks - Inline event handlers, including lambda expressions and multi-line statement bodies
- Event bindings for commands, methods, and inline code
- Global XML namespace imports and implicit namespace conventions
- Conditional XAML pruning
- Runtime loading for URI and inline XAML scenarios
- Hot reload, iOS hot reload transport support, and hot design tooling
- Shared XAML language-service core with references/definitions/hover/inlay hints/rename
- Inline C# language-service support with semantic highlighting, completion, references, and declarations in both attribute and element-content forms
- VS Code extension and Avalonia editor control built on the same semantic engine
- Unified MCP surfaces for workspace queries, runtime hot reload and hot design state, and preview lifecycle orchestration
For feature-specific details:
- configuration model:
site/articles/reference/configuration-model.md - configuration migration:
site/articles/reference/configuration-migration.md - x:Bind:
site/articles/xaml/xbind.md - x:Bind guide/spec:
site/articles/guides/xbind.md - C# expressions:
site/articles/xaml/csharp-expressions.md - inline C# code blocks:
site/articles/guides/inline-csharp-code.md - iOS hot reload:
site/articles/guides/hot-reload-ios.md - MCP hosts and live tooling:
site/articles/guides/mcp-servers-and-live-tooling.md - workspace MCP language tools:
site/articles/guides/workspace-mcp-language-tools.md - runtime MCP hot design control:
site/articles/guides/runtime-mcp-hot-design-control.md - runtime MCP studio control:
site/articles/guides/runtime-mcp-studio-control.md
MCP Hosts
AXSG now ships three MCP-oriented host modes:
- workspace host:
axsg-mcp --workspace /path/to/repo - runtime host: embed
XamlSourceGenRuntimeMcpServerinto the running Avalonia app - preview host:
dotnet run --project src/XamlToCSharpGenerator.PreviewerHost -- --mcp
Use the workspace host for project and query tooling.
Use the runtime host for live dotnet watch, hot reload, hot design, and studio state.
Use the preview host when a custom client needs explicit preview start, in-process preview hot reload, update, stop, and lifecycle resources.
The full operational guide is here:
site/articles/guides/mcp-servers-and-live-tooling.mdsite/articles/guides/workspace-mcp-language-tools.mdsite/articles/guides/runtime-mcp-hot-design-control.mdsite/articles/guides/runtime-mcp-studio-control.mdsite/articles/guides/preview-mcp-host-and-live-preview.mdsite/articles/architecture/unified-remote-api-and-mcp.md
AXSG vs XamlX
For Avalonia, XamlX is the compiler foundation behind the default XamlIl backend. XamlToCSharpGenerator is the source-generator alternative in this repository. The goal is standard Avalonia XAML parity first, then SourceGen-specific tooling and live-edit capabilities on top of that baseline.
| Area | AXSG (XamlToCSharpGenerator) |
XamlX / Avalonia XamlIl |
Notes |
|---|---|---|---|
| Primary build artifact | Generates C# into the normal Roslyn/MSBuild graph | Compiles XAML through the XamlX/XamlIl pipeline into generated IL/helpers | This is the main architectural difference. |
| Avalonia backend selection | Opt-in with AvaloniaXamlCompilerBackend=SourceGen |
Avalonia default backend | AXSG is intentionally explicit so projects can switch per app/repo. |
| Standard Avalonia XAML surface | Implemented with ongoing parity work and guard tests | Mature baseline used by Avalonia itself | AXSG uses XamlX/XamlIl behavior as the parity reference for standard semantics. |
| Compiled bindings | Yes | Yes | Both stacks support typed binding flows for Avalonia. |
| Runtime loading | Shipped as AXSG runtime packages with source-generated registries | Shipped in Avalonia via AvaloniaRuntimeXamlLoader / AvaloniaXamlIlRuntimeCompiler |
Both support runtime loading, but through different runtime contracts. |
| AOT / trimming posture | Explicit project rule: no reflection in emitted/runtime execution paths | Compile-time path is mature; Avalonia runtime loader paths are marked RequiresUnreferencedCode |
AXSG is stricter here because NativeAOT/trimming is a first-class contract in this repo. |
C# expression bindings ({= ...}, shorthand, interpolation) |
Yes | No equivalent compiler feature in Avalonia XamlIl baseline |
AXSG-specific extension. |
Inline C# code blocks ({CSharp ...}, <CSharp>, <![CDATA[ ... ]]>) |
Yes | No equivalent compiler feature in Avalonia XamlIl baseline |
AXSG-specific extension. |
| Event bindings | Yes | No equivalent AXSG-style event-binding feature in Avalonia XamlIl baseline |
AXSG-specific extension. |
| Conditional XAML pruning | Yes | Not part of the default Avalonia XamlIl compiler surface |
AXSG-specific extension. |
| Global xmlns and transform-rule configuration | Yes | Not exposed as the same unified configuration model | AXSG-specific configuration surface. |
| Hot reload / hot design hooks | Built into the AXSG runtime and build flow in this repo | Not shipped as part of XamlX itself | This table compares compiler stacks, not every external IDE feature around Avalonia. |
| Language service and editor tooling | Shared semantic language-service core, VS Code extension, Avalonia editor control, rename propagation | Not shipped as part of the XamlX compiler stack | AXSG treats compiler semantics and editor tooling as one product surface. |
| Best fit | Projects that want generated C#, strong tooling integration, and SourceGen-specific live-edit features | Projects staying on Avalonia's default production compiler path | Both can coexist because backend selection is explicit. |
Build Instructions
Prerequisites
- .NET 10 SDK
- Node.js 20+ for the VS Code extension
- Xcode 26.2 for the iOS sample and iOS hot-reload validation
- Android SDK for the Android sample
Fast CI-equivalent build
Use the solution filter when you do not need mobile workloads:
dotnet restore XamlToCSharpGenerator.CI.slnf --nologo
dotnet build XamlToCSharpGenerator.CI.slnf --nologo -m:1 /nodeReuse:false --disable-build-servers
dotnet test tests/XamlToCSharpGenerator.Tests/XamlToCSharpGenerator.Tests.csproj --nologo -m:1 /nodeReuse:false --disable-build-servers --no-build
Full repository build
Use the full solution when mobile prerequisites are installed:
dotnet restore XamlToCSharpGenerator.slnx --nologo
dotnet build XamlToCSharpGenerator.slnx --nologo -m:1 /nodeReuse:false --disable-build-servers
Package the NuGet and tool artifacts locally
Pack a specific artifact:
dotnet pack src/XamlToCSharpGenerator/XamlToCSharpGenerator.csproj -c Release --nologo -m:1 /nodeReuse:false --disable-build-servers
dotnet pack src/XamlToCSharpGenerator.LanguageServer/XamlToCSharpGenerator.LanguageServer.csproj -c Release --nologo -m:1 /nodeReuse:false --disable-build-servers
The release workflow packs every shippable project under src/ that is marked packable.
To mirror the workflow artifact packaging locally:
bash eng/release/package-artifacts.sh 0.1.0-local
pwsh eng/release/package-artifacts.ps1 -Version 0.1.0-local
Lower-level helpers are also available when you want to pack only part of the release surface:
bash eng/release/pack-nuget-artifacts.sh 0.1.0-local
bash eng/release/package-vscode-extension.sh 0.1.0-local
pwsh eng/release/pack-nuget-artifacts.ps1 -Version 0.1.0-local
pwsh eng/release/package-vscode-extension.ps1 -Version 0.1.0-local
Build the VS Code extension locally
cd tools/vscode/axsg-language-server
npm ci
npm run prepare:server
npx @vscode/vsce package
Release Pipeline
The repository ships release artifacts through .github/workflows/release.yml.
Behavior:
- tag
v*pushes create a release build - all shippable NuGet packages and the
.NETtool package are packed - the VS Code extension is packaged as a
.vsix - artifacts are uploaded to the workflow run
- GitHub Releases are created automatically for tag builds
- NuGet publishing runs automatically when
NUGET_API_KEYis configured - VS Code Marketplace publishing runs automatically when
VSCE_PATis configured
Release assets include:
*.nupkgfor every shipped package/toolaxsg-language-server-x.y.z.vsix
Development Flags
Core compiler MSBuild properties
These properties are exported through XamlToCSharpGenerator.Build.props and are the canonical switches for SourceGen-enabled Avalonia projects.
| Property | Default | Purpose |
|---|---|---|
AvaloniaXamlCompilerBackend |
XamlIl |
Selects the active XAML backend. Set to SourceGen to enable AXSG. |
AvaloniaSourceGenCompilerEnabled |
false |
Explicit master enable switch for the SourceGen compiler path. |
AvaloniaSourceGenUseCompiledBindingsByDefault |
false |
Makes bindings compiled by default when binding scopes support it. |
AvaloniaSourceGenCSharpExpressionsEnabled |
true |
Enables explicit C# expression bindings ({= ...}). |
AvaloniaSourceGenImplicitCSharpExpressionsEnabled |
true |
Enables implicit expression detection for { ... } payloads. |
AvaloniaSourceGenCreateSourceInfo |
false |
Emits #line and source mapping metadata into generated C#. |
AvaloniaSourceGenStrictMode |
false |
Enables stricter semantic validation and warning behavior. |
AvaloniaSourceGenHotReloadEnabled |
true |
Enables SourceGen hot reload integration. |
AvaloniaSourceGenHotReloadErrorResilienceEnabled |
true |
Keeps last-known-good output during transient invalid edits. |
AvaloniaSourceGenIdeHotReloadEnabled |
true |
Enables IDE-triggered hot reload behavior. |
AvaloniaSourceGenDotNetWatchXamlBuildTriggersEnabled |
false |
Re-enables SDK dotnet watch XAML build triggers when AXSG IDE hot reload is active. |
AvaloniaSourceGenHotDesignEnabled |
false |
Enables hot design tooling support. |
AvaloniaSourceGenTracePasses |
false |
Traces compiler pass execution for diagnostics/perf investigation. |
AvaloniaSourceGenMetricsEnabled |
false |
Enables compiler metrics emission. |
AvaloniaSourceGenMetricsDetailed |
false |
Enables detailed compiler metrics output. |
AvaloniaSourceGenMarkupParserLegacyInvalidNamedArgumentFallbackEnabled |
false |
Opt-in compatibility fallback for legacy invalid markup-argument behavior. |
AvaloniaSourceGenTypeResolutionCompatibilityFallbackEnabled |
false |
Opt-in compatibility fallback for legacy type-resolution behavior. |
AvaloniaSourceGenAllowImplicitXmlnsDeclaration |
false |
Allows implicit default XAML namespace behavior. |
AvaloniaSourceGenImplicitStandardXmlnsPrefixesEnabled |
true |
Pre-seeds x, d, and mc namespace prefixes. |
AvaloniaSourceGenImplicitDefaultXmlns |
https://github.com/avaloniaui |
Default XML namespace used when implicit xmlns mode is enabled. |
AvaloniaSourceGenInferClassFromPath |
false |
Infers x:Class from root namespace and target path when possible. |
AvaloniaSourceGenImplicitProjectNamespacesEnabled |
false |
Lets project-local namespaces participate in default type resolution. |
AvaloniaSourceGenGlobalXmlnsPrefixes |
empty | Declares global namespace prefix mappings. |
AvaloniaSourceGenTransformRules |
empty | Adds transform rules to the unified configuration model. |
When DotNetWatchBuild=true and AXSG IDE hot reload is active, AXSG suppresses XAML entries from the SDK watch/build-trigger inputs by default so theme and resource-dictionary edits flow through AXSG runtime reload instead of Roslyn EnC rebuilds. Set AvaloniaSourceGenDotNetWatchXamlBuildTriggersEnabled=true only when you explicitly want the SDK dotnet watch XAML trigger behavior back.
Build-host and configuration alias properties
| Property | Default | Purpose |
|---|---|---|
XamlSourceGenBackend |
mirrors AvaloniaXamlCompilerBackend |
Backward-compatible backend alias. |
XamlSourceGenEnabled |
mirrors AvaloniaSourceGenCompilerEnabled |
Backward-compatible enable switch alias. |
XamlSourceGenInputItemGroup |
AvaloniaXaml |
Item group used as XAML input for the generator host. This is the supported way to switch AXSG to a custom project item group. |
XamlSourceGenAdditionalFilesSourceItemGroup |
AvaloniaXaml |
Reserved for Avalonia package integration. AXSG always projects Avalonia XAML into Roslyn AdditionalFiles as AvaloniaXaml; custom values are ignored with a build warning. |
XamlSourceGenTransformRules |
empty | Backward-compatible transform-rule alias. |
XamlSourceGenTransformRuleItemGroup |
AvaloniaSourceGenTransformRule |
Item group used to contribute transform rules. |
XamlSourceGenConfigurationPrecedence |
empty | Overrides configuration source precedence. |
AvaloniaSourceGenConfigurationPrecedence |
empty | Canonical configuration precedence override. |
XamlSourceGenLocalAnalyzerProject |
none | Development-only item used to point sample apps at locally built generator projects and watch graph inputs. |
iOS and remote hot-reload MSBuild properties
| Property | Default | Purpose |
|---|---|---|
AvaloniaSourceGenIosHotReloadEnabled |
true for Debug iOS, otherwise false |
Enables iOS-specific hot-reload wiring. |
AvaloniaSourceGenIosHotReloadUseInterpreter |
true when iOS hot reload is enabled |
Turns on interpreter mode needed by the iOS edit-and-continue path. |
AvaloniaSourceGenIosHotReloadEnableStartupHookSupport |
false |
Enables startup-hook forwarding support on iOS. |
AvaloniaSourceGenIosHotReloadForwardWatchEnvironment |
true |
Forwards dotnet watch environment variables into the iOS launch flow. |
AvaloniaSourceGenIosHotReloadForwardStartupHooks |
false |
Forwards startup hook variables into the iOS launch flow. |
AvaloniaSourceGenIosHotReloadForwardModifiableAssemblies |
false |
Forwards modifiable-assemblies settings into the iOS launch flow. |
AvaloniaSourceGenIosHotReloadStartupBannerEnabled |
true |
Prints the iOS hot-reload startup banner. |
AvaloniaSourceGenIosHotReloadTransportMode |
Auto |
Chooses Auto, MetadataOnly, or RemoteOnly transport selection. |
AvaloniaSourceGenIosHotReloadHandshakeTimeoutMs |
3000 |
Transport handshake timeout. |
AvaloniaSourceGenHotReloadRemoteEndpoint |
empty | Explicit remote host endpoint for device/simulator transport. |
AvaloniaSourceGenHotReloadRemotePort |
45820 |
Default remote transport port when endpoint auto-resolution is used. |
AvaloniaSourceGenHotReloadRemoteAutoSimulatorEndpointEnabled |
false |
Allows simulator endpoint auto-selection. |
AvaloniaSourceGenHotReloadRemoteRequireExplicitDeviceEndpoint |
true |
Requires an explicit device endpoint instead of guessing. |
AvaloniaSourceGenIosDotNetWatchXamlBuildTriggersEnabled |
false |
Enables iOS-specific dotnet watch XAML build trigger plumbing. |
AvaloniaSourceGenIosDotNetWatchProxyProjectPath |
empty | Points to the dotnet-watch proxy project used by iOS debugging flows. |
AvaloniaSourceGenIosDotNetWatchProxyPath |
empty | Points to the published proxy assembly used by iOS debugging flows. |
Runtime and test environment variables
| Variable | Default | Purpose |
|---|---|---|
AXSG_HOTRELOAD_TRACE |
off | Enables runtime hot-reload trace logging. |
AXSG_HOTRELOAD_TRANSPORT_MODE |
unset | Overrides transport selection at runtime. |
AXSG_HOTRELOAD_HANDSHAKE_TIMEOUT_MS |
unset | Overrides hot-reload handshake timeout. |
AXSG_HOTRELOAD_REMOTE_ENDPOINT |
unset | Supplies the remote endpoint directly from the environment. |
AXSG_RUN_PERF_TESTS |
unset | Enables the performance harness tests. |
AXSG_PERF_TEST_TIMEOUT_MS |
harness default | Overrides perf-test timeout. |
AXSG_PERF_MAX_FULL_BUILD_MS |
harness default | Max acceptable full build duration for perf validation. |
AXSG_PERF_MAX_SINGLE_EDIT_MS |
harness default | Max acceptable single-edit incremental duration. |
AXSG_PERF_MAX_INCLUDE_EDIT_MS |
harness default | Max acceptable include-edit incremental duration. |
AXSG_PERF_MAX_INCREMENTAL_TO_FULL_RATIO |
harness default | Max acceptable incremental/full build ratio. |
VS Code extension settings
| Setting | Default | Purpose |
|---|---|---|
axsg.languageServer.mode |
bundled |
Chooses bundled vs custom language-server launch mode. |
axsg.languageServer.command |
axsg-lsp |
Command used when mode=custom. |
axsg.languageServer.args |
[] |
Additional arguments passed to the custom server. |
axsg.languageServer.trace |
off |
LSP trace level. |
axsg.inlayHints.bindingTypeHints.enabled |
true |
Enables semantic binding type hints. |
axsg.inlayHints.typeDisplayStyle |
short |
Shows short or fully qualified type names in hints. |
axsg.preview.dotNetCommand |
dotnet |
Dotnet executable used for preview build and launch steps. |
axsg.preview.compilerMode |
sourceGenerated |
Chooses auto, sourceGenerated, or avalonia preview compilation. |
axsg.preview.targetFramework |
"" |
Optional target framework override for preview host/source evaluation. |
axsg.preview.hostProject |
"" |
Optional Avalonia executable project used when the current XAML file lives in a library. |
axsg.preview.buildBeforeLaunch |
true |
Builds preview projects only when fresh outputs are needed. Source-generated save refresh rebuilds just the source project when the host output can be reused. |
axsg.preview.autoUpdateDelayMs |
300 |
Debounce interval before unsaved XAML edits are pushed to the active preview session. |
Repository Layout
src: packages, tool, generator, runtime, and language-service projectstools/vscode/axsg-language-server: VS Code extension sourcetests: compiler, runtime, and language-service test suitesamples: sample apps used to validate compiler/runtime/tooling behaviordocs: focused documentation for configuration and platform-specific flowssite: Lunet documentation site content, navigation, and API-doc generation
Build docs locally:
./build-docs.sh
./serve-docs.sh
./build-docs.ps1
./serve-docs.ps1
Generated docs output is written to site/.lunet/build/www.
.github/workflows: CI and release pipelines
License
MIT. See LICENSE.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net10.0 is compatible. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
-
net10.0
- Avalonia (>= 11.3.12)
- Avalonia.AvaloniaEdit (>= 11.4.0)
- XamlToCSharpGenerator.LanguageService (>= 0.1.0-alpha.21)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on XamlToCSharpGenerator.Editor.Avalonia:
| Package | Downloads |
|---|---|
|
XamlToCSharpGenerator.Runtime.Avalonia
Avalonia runtime loader, bootstrap, and hot-reload integration for source-generated XAML. |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 0.1.0-alpha.21 | 0 | 3/21/2026 |
| 0.1.0-alpha.20 | 36 | 3/20/2026 |
| 0.1.0-alpha.19 | 30 | 3/20/2026 |
| 0.1.0-alpha.18 | 33 | 3/19/2026 |
| 0.1.0-alpha.17 | 36 | 3/17/2026 |
| 0.1.0-alpha.16 | 30 | 3/17/2026 |
| 0.1.0-alpha.15 | 33 | 3/17/2026 |
| 0.1.0-alpha.14 | 38 | 3/17/2026 |
| 0.1.0-alpha.13 | 51 | 3/16/2026 |
| 0.1.0-alpha.12 | 46 | 3/16/2026 |
| 0.1.0-alpha.11 | 43 | 3/16/2026 |
| 0.1.0-alpha.10 | 38 | 3/15/2026 |
| 0.1.0-alpha.9 | 39 | 3/14/2026 |
| 0.1.0-alpha.8 | 45 | 3/13/2026 |
| 0.1.0-alpha.7 | 40 | 3/13/2026 |
| 0.1.0-alpha.6 | 42 | 3/11/2026 |
| 0.1.0-alpha.5 | 40 | 3/11/2026 |
| 0.1.0-alpha.4 | 37 | 3/11/2026 |
| 0.1.0-alpha.3 | 38 | 3/10/2026 |
| 0.1.0-alpha.2 | 40 | 3/9/2026 |