XamlX icon indicating copy to clipboard operation
XamlX copied to clipboard

General purpose pluggable XAML compiler with no runtime dependencies.

Results 38 XamlX issues
Sort by recently updated
recently updated
newest added

After #100, two tests that were previously skipped and should now pass don't have `[Fact]` anymore. Added it back. These tests don't pass on Cecil though (fails with a NRE),...

Do you have any examples of how to sterilize the AST? I tried with System.Text.Json but I get empty files.

While devlop test for #112, i found inconsistency when i get FullName of GenericType. ## Sre ``` TypeSystemTest.Models.GenericType`1[[System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] ``` ## Cecil ``` TypeSystemTest.Models.GenericType`1 ``` Which of...

HI, in the pr https://github.com/AvaloniaUI/Avalonia/pull/15274. I have need to retrieve `Interactive.AddHandler` method. To do this, I tried using `IXamlType.FindMethod` and checking if the method name is **AddHandler`1** without success. After...

There'e multiple scenarios when compilling axaml throws internal compiller error (ArgumentOutOfRangeException). This exception occures when you have in source axaml file any xml elements of types which has no Content...

I have use case for `x:Reference` markup extension when used in `Avalonia` for defining docking layouts using xaml. **Example:** ```XAML ``` In my example I have two separate instances of...

See AvaloniaUI/Avalonia#16929. According to @maxkatz6, `{x:Static}` should work on internal members if those members are in the same assembly. However, XamlX fails because it requires everything to be `public`: https://github.com/kekekeks/XamlX/blob/7b8f6099a1c2240b9fa5bbf7a8a6954e99c4e556/src/XamlX/Ast/Intrinsics.cs#L116-L118

bug
help wanted