Files
2026-07-13 13:13:17 +08:00

21 lines
645 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<Import Project="$(SolutionDir)/Tixl.props" />
<PropertyGroup>
<TargetFramework>$(TixlNetCoreFrameworkVersion)</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<RootNamespace>T3.Serialization</RootNamespace>
<Configurations>Debug;Release</Configurations>
<Platforms>AnyCPU</Platforms>
<Deterministic>true</Deterministic>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.4" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Logging\Logging.csproj" />
</ItemGroup>
</Project>