-
Notifications
You must be signed in to change notification settings - Fork 55
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for nested types to CecilAssembly. #54
Conversation
Updates XamlX submodule to PR kekekeks/XamlX#54
Hi @kekekeks , are there any issues with merging this change? |
Any updates? |
This is essential feature for our localization system. All the localization consts are generated before build and accessed in XAML via nested static classes. Would be great to be able to use existing localization in Avalonia apps. |
For everyone stumbling upon this – I have a workaround for |
Can I continue the PR? |
IIRC the original change was causing InvalidProgramException, which is why it wasn't merged. |
Do you have a test that simulates the Exception? I tested the PR in the Sandbox of this branch and it seems to work as I expected. |
Adds support for nested types specified with a
+
to the Cecil backend.Fixes AvaloniaUI/Avalonia#2725.