2023-01-03 10:41:30 +01:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2020-08-08 13:58:53 +02:00
|
|
|
|
<PropertyGroup>
|
2023-01-03 10:41:30 +01:00
|
|
|
|
<TargetFramework>net48</TargetFramework>
|
2020-08-08 13:58:53 +02:00
|
|
|
|
<OutputType>Library</OutputType>
|
2023-01-03 10:41:30 +01:00
|
|
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
2020-08-08 13:58:53 +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>
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
|
2021-07-12 14:36:18 +02:00
|
|
|
|
<OutputPath>..\Debug\</OutputPath>
|
2020-08-08 13:58:53 +02:00
|
|
|
|
<LangVersion>latest</LangVersion>
|
|
|
|
|
|
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
|
|
|
|
|
|
<OutputPath>bin\x86\Release\</OutputPath>
|
|
|
|
|
|
<LangVersion>latest</LangVersion>
|
|
|
|
|
|
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<ItemGroup>
|
2023-01-03 10:41:30 +01:00
|
|
|
|
<Compile Update="Resources.Designer.cs">
|
2021-02-09 15:04:40 +01:00
|
|
|
|
<AutoGen>True</AutoGen>
|
|
|
|
|
|
<DesignTime>True</DesignTime>
|
|
|
|
|
|
<DependentUpon>Resources.resx</DependentUpon>
|
|
|
|
|
|
</Compile>
|
2020-08-08 13:58:53 +02:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
2023-01-03 10:41:30 +01:00
|
|
|
|
<ProjectReference Include="..\ChanSort.Api\ChanSort.Api.csproj" />
|
2020-08-08 13:58:53 +02:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
2023-01-03 10:41:30 +01:00
|
|
|
|
<None Update="ChanSort.Loader.Philips.ini">
|
2020-08-09 14:09:08 +02:00
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
2021-01-17 15:44:45 +01:00
|
|
|
|
</None>
|
2020-08-08 13:58:53 +02:00
|
|
|
|
</ItemGroup>
|
2021-02-09 15:04:40 +01:00
|
|
|
|
<ItemGroup>
|
2023-01-03 10:41:30 +01:00
|
|
|
|
<EmbeddedResource Update="Resources.resx">
|
2021-02-09 15:04:40 +01:00
|
|
|
|
<Generator>ResXFileCodeGenerator</Generator>
|
|
|
|
|
|
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
|
|
|
|
|
|
</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>
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<Compile Remove="DllClient.cs" />
|
|
|
|
|
|
</ItemGroup>
|
2020-08-08 13:58:53 +02:00
|
|
|
|
</Project>
|