WebUtils.csproj
1 <Project Sdk="Microsoft.NET.Sdk"> 2 3 <PropertyGroup> 4 <TargetFramework>net8.0</TargetFramework> 5 <ImplicitUsings>enable</ImplicitUsings> 6 <Nullable>enable</Nullable> 7 </PropertyGroup> 8 9 <ItemGroup> 10 <PackageReference Include="Newtonsoft.Json" Version="13.0.3" /> 11 </ItemGroup> 12 13 <ItemGroup> 14 <ProjectReference Include="..\Logging\Logging.csproj" /> 15 <ProjectReference Include="..\Utils\Utils.csproj" /> 16 </ItemGroup> 17 18 </Project>