Allow reflection based json serialization

This commit is contained in:
Timothy Baldridge 2023-10-30 21:16:05 -06:00
parent f178213fee
commit 9154463b76
2 changed files with 2 additions and 0 deletions

View File

@ -15,6 +15,7 @@
<AllowUnsafeBlocks>true</AllowUnsafeBlocks> <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<!-- <IncludeSymbolsInSingleFile>true</IncludeSymbolsInSingleFile> --> <!-- <IncludeSymbolsInSingleFile>true</IncludeSymbolsInSingleFile> -->
<AssemblyName>Wabbajack</AssemblyName> <AssemblyName>Wabbajack</AssemblyName>
<JsonSerializerIsReflectionEnabledByDefault>true</JsonSerializerIsReflectionEnabledByDefault>
</PropertyGroup> </PropertyGroup>

View File

@ -14,6 +14,7 @@
<NoWarn>CS8601</NoWarn> <NoWarn>CS8601</NoWarn>
<NoWarn>CS8618</NoWarn> <NoWarn>CS8618</NoWarn>
<TargetFramework>net8.0</TargetFramework> <TargetFramework>net8.0</TargetFramework>
<JsonSerializerIsReflectionEnabledByDefault>true</JsonSerializerIsReflectionEnabledByDefault>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>