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 has been archived by the owner on Jan 3, 2024. It is now read-only.
Thank you for the report.
I have fixed it with target.GetType().GetRuntimeProperty(property);, as GetProperty seems to not be available on TypeInfo in netstandard1.0.
The fix will be included in version 2.0.3.
if the current class has an abstract base class, the property does not get resolved:
File: Property.cs
Line of Code: PropertyInfo p = target.GetType().GetTypeInfo().GetDeclaredProperty(property);
It will get resolved with
PropertyInfo p = target.GetType().GetTypeInfo().GetProperty(property);
The text was updated successfully, but these errors were encountered: