2023-01-14 15:22:16 +01:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
|
|
<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>
|
2024-08-18 17:41:46 +02:00
|
|
|
|
<PackageReference Include="Microsoft.Data.Sqlite" Version="8.0.8" />
|
2023-01-14 15:22:16 +01:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<ProjectReference Include="..\ChanSort.Api\ChanSort.Api.csproj" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
</Project>
|