Files
duplicati/Duplicati/Library/SQLiteHelper/Duplicati.Library.SQLiteHelper.csproj
T

40 lines
1.7 KiB
XML
Raw Normal View History

<Project Sdk="Microsoft.NET.Sdk">
2022-04-12 21:43:50 -07:00
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<OutputType>Library</OutputType>
<AssemblyName>SQLiteHelper</AssemblyName>
2022-04-12 21:43:50 -07:00
<Description>SQLiteHelper for Duplicati</Description>
</PropertyGroup>
<ItemGroup>
2022-04-12 21:43:50 -07:00
<ProjectReference Include="..\Logging\Duplicati.Library.Logging.csproj" />
<ProjectReference Include="..\Interface\Duplicati.Library.Interface.csproj" />
<ProjectReference Include="..\Utility\Duplicati.Library.Utility.csproj" />
<ProjectReference Include="..\Localization\Duplicati.Library.Localization.csproj" />
</ItemGroup>
2022-04-12 21:43:50 -07:00
<ItemGroup>
2022-04-12 21:43:50 -07:00
<PackageReference Include="Microsoft.DotNet.Analyzers.Compatibility" Version="0.2.12-alpha">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<!--
MS Data.Sqlite seems much more portable, but does not support unnamed parameters,
which are used extensively in Duplicati.
Issue tracking progress on the unnamed parameters:
https://github.com/dotnet/efcore/issues/24480
<PackageReference Include="Microsoft.Data.Sqlite" Version="8.0.3" />
-->
<PackageReference Include="System.Data.SQLite.Core" Version="1.0.115.0" />
<PackageReference Include="System.Data.SQLite.Core.MSIL" Version="1.0.115.0" />
2024-04-15 13:22:39 +02:00
<PackageReference Include="System.Data.SQLite.Core.Duplicati.macos.arm64" Version="1.0.116.1" />
<PackageReference Include="System.Data.SQLite.Core.Duplicati.linux.arm64" Version="1.0.116" />
<PackageReference Include="System.Data.SQLite.Core.Duplicati.linux.armv7" Version="1.0.116" />
</ItemGroup>
2022-04-12 21:43:50 -07:00
</Project>