2023-01-03 10:41:30 +01:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2013-04-12 00:47:50 +02:00
|
|
|
|
<PropertyGroup>
|
2023-01-03 10:41:30 +01:00
|
|
|
|
<TargetFramework>net48</TargetFramework>
|
2013-04-12 00:47:50 +02:00
|
|
|
|
<OutputType>Library</OutputType>
|
2023-01-03 10:41:30 +01:00
|
|
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
2013-04-12 00:47:50 +02:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
2021-07-12 14:36:18 +02:00
|
|
|
|
<OutputPath>..\Debug\</OutputPath>
|
2021-05-01 11:41:33 +02:00
|
|
|
|
<LangVersion>latest</LangVersion>
|
2022-10-01 19:51:14 +02:00
|
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
2013-04-12 00:47:50 +02:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
2021-05-01 11:41:33 +02:00
|
|
|
|
<LangVersion>latest</LangVersion>
|
2013-04-12 00:47:50 +02:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
|
|
|
|
|
|
<OutputPath>..\Debug\</OutputPath>
|
2021-05-01 11:41:33 +02:00
|
|
|
|
<LangVersion>latest</LangVersion>
|
2013-04-12 00:47:50 +02:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
|
2019-11-08 02:31:44 +01:00
|
|
|
|
<OutputPath>..\Release\</OutputPath>
|
2021-05-01 11:41:33 +02:00
|
|
|
|
<LangVersion>latest</LangVersion>
|
2013-04-12 00:47:50 +02:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<Service Include="{94E38DFF-614B-4cbd-B67C-F211BB35CE8B}" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
2023-01-03 10:41:30 +01:00
|
|
|
|
<ProjectReference Include="..\ChanSort.Api\ChanSort.Api.csproj" />
|
2013-04-12 00:47:50 +02:00
|
|
|
|
</ItemGroup>
|
2021-04-25 18:31:05 +02:00
|
|
|
|
<ItemGroup>
|
2023-01-03 10:41:30 +01:00
|
|
|
|
<None Update="ChanSort.Loader.Panasonic.ini">
|
2021-09-19 23:32:38 +02:00
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
|
</None>
|
2021-04-25 18:31:05 +02:00
|
|
|
|
</ItemGroup>
|
2023-01-03 10:41:30 +01:00
|
|
|
|
<ItemGroup>
|
2023-01-03 20:43:15 +01:00
|
|
|
|
<PackageReference Include="Microsoft.Data.Sqlite" 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" />
|
|
|
|
|
|
</ItemGroup>
|
2013-04-12 00:47:50 +02:00
|
|
|
|
</Project>
|