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;
+1 -1
View File
@@ -4,7 +4,7 @@
<TargetFramework>netstandard2.1</TargetFramework>
<Nullable>enable</Nullable>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Version>2.0.3</Version>
<Version>2.0.4</Version>
<LangVersion>9</LangVersion>
</PropertyGroup>