2023-01-03 10:41:30 +01:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2015-09-24 12:46:52 +02:00
|
|
|
|
<PropertyGroup>
|
2023-01-03 10:41:30 +01:00
|
|
|
|
<TargetFramework>net48</TargetFramework>
|
2015-09-24 12:46:52 +02:00
|
|
|
|
<OutputType>Library</OutputType>
|
2023-01-03 10:41:30 +01:00
|
|
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
2015-09-24 12:46:52 +02:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
|
|
|
|
<OutputPath>..\Debug\</OutputPath>
|
2020-01-02 20:33:40 +01:00
|
|
|
|
<LangVersion>latest</LangVersion>
|
2015-09-24 12:46:52 +02:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
2020-01-02 20:33:40 +01:00
|
|
|
|
<LangVersion>latest</LangVersion>
|
2015-09-24 12:46:52 +02:00
|
|
|
|
</PropertyGroup>
|
2015-11-27 23:47:09 +01:00
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
|
2016-04-16 20:01:51 +02:00
|
|
|
|
<OutputPath>..\Debug\</OutputPath>
|
2015-11-27 23:47:09 +01:00
|
|
|
|
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
|
2020-01-02 20:33:40 +01:00
|
|
|
|
<LangVersion>latest</LangVersion>
|
2015-11-27 23:47:09 +01:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
|
2019-11-08 02:31:44 +01:00
|
|
|
|
<OutputPath>..\Release\</OutputPath>
|
2015-11-27 23:47:09 +01:00
|
|
|
|
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
|
2020-01-02 20:33:40 +01:00
|
|
|
|
<LangVersion>latest</LangVersion>
|
2015-11-27 23:47:09 +01:00
|
|
|
|
</PropertyGroup>
|
2015-09-24 12:46:52 +02:00
|
|
|
|
<ItemGroup>
|
2023-01-03 10:41:30 +01:00
|
|
|
|
<Compile Update="Resources.Designer.cs">
|
2016-04-16 20:01:51 +02:00
|
|
|
|
<DependentUpon>Resources.resx</DependentUpon>
|
|
|
|
|
|
<AutoGen>True</AutoGen>
|
|
|
|
|
|
<DesignTime>True</DesignTime>
|
|
|
|
|
|
</Compile>
|
2015-09-24 12:46:52 +02:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
2023-01-03 10:41:30 +01:00
|
|
|
|
<None Update="ChanSort.Loader.Hisense.ini">
|
2015-09-24 12:46:52 +02:00
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
|
</None>
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
2023-01-03 10:41:30 +01:00
|
|
|
|
<ProjectReference Include="..\ChanSort.Api\ChanSort.Api.csproj" />
|
2015-09-24 12:46:52 +02:00
|
|
|
|
</ItemGroup>
|
2016-04-16 20:01:51 +02:00
|
|
|
|
<ItemGroup>
|
2023-01-03 10:41:30 +01:00
|
|
|
|
<EmbeddedResource Update="Resources.resx">
|
2016-04-16 20:01:51 +02:00
|
|
|
|
<Generator>ResXFileCodeGenerator</Generator>
|
|
|
|
|
|
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
|
|
|
|
|
|
<SubType>Designer</SubType>
|
|
|
|
|
|
</EmbeddedResource>
|
|
|
|
|
|
</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>
|
2015-09-24 12:46:52 +02:00
|
|
|
|
</Project>
|