2023-01-14 15:22:16 +01:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2025-06-05 18:35:10 +02:00
|
|
|
|
<Import Project="..\Solution.props" />
|
2023-01-14 15:22:16 +01:00
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<TargetFramework>net48</TargetFramework>
|
|
|
|
|
|
<ImplicitUsings>disable</ImplicitUsings>
|
|
|
|
|
|
<LangVersion>latest</LangVersion>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
|
|
|
|
<OutputPath>..\Debug\</OutputPath>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
|
|
|
|
|
<OutputPath>..\Release\</OutputPath>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<ItemGroup>
|
2025-06-05 18:35:10 +02:00
|
|
|
|
<PackageReference Include="Microsoft.Data.Sqlite" Version="9.0.5" />
|
|
|
|
|
|
<PackageReference Include="Microsoft.Data.Sqlite.Core" Version="9.0.5" />
|
2023-01-14 15:22:16 +01:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<ProjectReference Include="..\ChanSort.Api\ChanSort.Api.csproj" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2025-06-05 18:35:10 +02:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<PackageReference Update="System.Memory" Version="4.6.3" />
|
|
|
|
|
|
<PackageReference Update="System.Runtime.CompilerServices.Unsafe" Version="6.1.2" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2023-01-14 15:22:16 +01:00
|
|
|
|
</Project>
|