2023-01-03 10:41:30 +01:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2013-03-31 14:09:38 +02:00
|
|
|
|
<PropertyGroup>
|
2023-01-03 10:41:30 +01:00
|
|
|
|
<TargetFramework>net48</TargetFramework>
|
2013-03-31 14:09:38 +02:00
|
|
|
|
<OutputType>Library</OutputType>
|
2023-01-03 10:41:30 +01:00
|
|
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
2013-03-31 14:09:38 +02:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
|
|
|
|
<OutputPath>..\Debug\</OutputPath>
|
2021-01-23 14:22:18 +01:00
|
|
|
|
<LangVersion>latest</LangVersion>
|
2013-03-31 14:09:38 +02:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
2021-01-23 14:22:18 +01:00
|
|
|
|
<LangVersion>latest</LangVersion>
|
2013-03-31 14:09:38 +02:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
|
|
|
|
|
|
<OutputPath>..\Debug\</OutputPath>
|
|
|
|
|
|
<CodeAnalysisIgnoreBuiltInRuleSets>false</CodeAnalysisIgnoreBuiltInRuleSets>
|
|
|
|
|
|
<CodeAnalysisIgnoreBuiltInRules>false</CodeAnalysisIgnoreBuiltInRules>
|
|
|
|
|
|
<CodeAnalysisFailOnMissingRules>false</CodeAnalysisFailOnMissingRules>
|
2021-01-23 14:22:18 +01:00
|
|
|
|
<LangVersion>latest</LangVersion>
|
2013-03-31 14:09:38 +02:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
|
2019-11-08 02:31:44 +01:00
|
|
|
|
<OutputPath>..\Release\</OutputPath>
|
2013-03-31 14:09:38 +02:00
|
|
|
|
<CodeAnalysisIgnoreBuiltInRuleSets>true</CodeAnalysisIgnoreBuiltInRuleSets>
|
|
|
|
|
|
<CodeAnalysisIgnoreBuiltInRules>true</CodeAnalysisIgnoreBuiltInRules>
|
|
|
|
|
|
<CodeAnalysisFailOnMissingRules>true</CodeAnalysisFailOnMissingRules>
|
2021-01-23 14:22:18 +01:00
|
|
|
|
<LangVersion>latest</LangVersion>
|
2013-03-31 14:09:38 +02:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<ItemGroup>
|
2023-08-14 10:46:10 +02:00
|
|
|
|
<Reference Include="Microsoft.CSharp" />
|
2022-04-19 10:36:52 +02:00
|
|
|
|
<Reference Include="System.IO.Compression" />
|
2013-03-31 14:09:38 +02:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
2023-01-03 10:41:30 +01:00
|
|
|
|
<ProjectReference Include="..\ChanSort.Api\ChanSort.Api.csproj" />
|
2013-03-31 14:09:38 +02:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
2023-01-03 10:41:30 +01:00
|
|
|
|
<None Update="ChanSort.Loader.Samsung.ini">
|
2013-04-03 13:30:08 +02:00
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
|
</None>
|
|
|
|
|
|
</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-08-14 10:46:10 +02:00
|
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
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-03-31 14:09:38 +02:00
|
|
|
|
</Project>
|