mirror of
https://github.com/duplicati/duplicati.git
synced 2026-05-06 23:29:31 -04:00
44 lines
1.9 KiB
XML
44 lines
1.9 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<OutputType>Library</OutputType>
|
|
<AssemblyName>SQLiteHelper</AssemblyName>
|
|
<Description>SQLiteHelper for Duplicati</Description>
|
|
<RootNamespace>Duplicati.Library.SQLiteHelper</RootNamespace>
|
|
<Copyright>Copyright © 2024 Team Duplicati, MIT license</Copyright>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<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>
|
|
|
|
<ItemGroup>
|
|
<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" />
|
|
<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" />
|
|
<PackageReference Include="System.Data.SQLite.Core.Duplicati.windows.arm64" Version="1.0.116.1" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|
|
|