Moving codegen tools to another project

This commit is contained in:
2025-06-03 12:09:32 +03:00
parent fa0565e699
commit 745def1365
27 changed files with 640 additions and 22 deletions
+1 -1
View File
@@ -65,7 +65,7 @@ namespace mROA.Cbor
property.SetValue(instance,
_properties[index] is IPreParsedValue ppv
? ppv.ToObject(property.PropertyType, context)
: _properties[index]);
: Convert.ChangeType(_properties[index], property.PropertyType));
}
return instance;