2023-01-03 10:41:30 +01:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2021-09-06 20:42:45 +02:00
|
|
|
|
<PropertyGroup>
|
2023-01-03 10:41:30 +01:00
|
|
|
|
<TargetFramework>net48</TargetFramework>
|
2021-09-06 20:42:45 +02:00
|
|
|
|
<OutputType>Library</OutputType>
|
2023-01-03 10:41:30 +01:00
|
|
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
2021-09-06 20:42:45 +02:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
|
|
|
|
<OutputPath>..\Debug\</OutputPath>
|
|
|
|
|
|
<LangVersion>latest</LangVersion>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
|
|
|
|
|
<LangVersion>latest</LangVersion>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<ItemGroup>
|
2023-01-03 10:41:30 +01:00
|
|
|
|
<ProjectReference Include="..\ChanSort.Api\ChanSort.Api.csproj" />
|
2021-09-06 20:42:45 +02:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
2023-01-03 20:43:15 +01:00
|
|
|
|
<PackageReference Include="Microsoft.Data.Sqlite.Core" Version="7.0.1" />
|
2023-01-03 10:41:30 +01:00
|
|
|
|
<PackageReference Include="System.Buffers" Version="4.5.1" />
|
|
|
|
|
|
<PackageReference Include="System.Memory" Version="4.5.5" />
|
|
|
|
|
|
<PackageReference Include="System.Numerics.Vectors" Version="4.5.0" />
|
|
|
|
|
|
<PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="6.0.0" />
|
2021-09-06 20:42:45 +02:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
</Project>
|