You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 30, 2023. It is now read-only.
While browsing the code we noticed that in MetadataProviderDiscovery the enumeration is stopped when a type derived from Application is found. Is this intentional? This seems that a mere change in type name could result in different output of the DiscoverMetadataProviders method - e.g. if the type deriving from application will be called ZApplication it will probably show up last in the list of types, so all IXamlMetadataProvider types will be returned, but if we rename it to AAplication it will now be discovered early and will be the only thing returned, potentially.
While browsing the code we noticed that in
MetadataProviderDiscoverythe enumeration is stopped when a type derived fromApplicationis found. Is this intentional? This seems that a mere change in type name could result in different output of theDiscoverMetadataProvidersmethod - e.g. if the type deriving from application will be calledZApplicationit will probably show up last in the list of types, so allIXamlMetadataProvidertypes will be returned, but if we rename it toAAplicationit will now be discovered early and will be the only thing returned, potentially.