Shared semantic engine used by the LSP server and in-app editors. It owns completion, hover, navigation, references, semantic tokens, refactorings, and inline C# projections.
This package is the center of AXSG editor tooling. It handles:
It is the semantic center of the tooling stack. The standalone server, the VS Code extension, and in-app editor surfaces all depend on this package behaving like the compiler rather than like a disconnected heuristic parser.
XamlToCSharpGenerator.LanguageServer.ToolXamlToCSharpGenerator.Editor.AvaloniaThis package is not the LSP transport layer and it is not the editor client integration layer. Protocol shaping belongs in XamlToCSharpGenerator.LanguageServer.Tool, while editor-specific UX and middleware belong in the extension or in-process editor host.
Because this package sits on hot editor request paths, it carries explicit work around deferred compilation loading, cache reuse, low-allocation symbol/reference resolution, and inline-C# projection reuse.