2
0
mirror of https://github.com/esiur/esiur-dotnet.git synced 2025-09-13 12:43:17 +00:00
This commit is contained in:
2025-08-29 20:51:27 +03:00
parent 5b7c6a864f
commit 89d395f83f
13 changed files with 65 additions and 44 deletions

View File

@@ -82,7 +82,7 @@ public static class ResourceProxy
var props = from p in type.GetProperties()
where p.CanWrite && p.GetSetMethod().IsVirtual &&
p.GetCustomAttributes(typeof(ResourceProperty), false).Count() > 0
p.GetCustomAttributes(typeof(ExportAttribute), false).Count() > 0
select p;
#endif