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

24 lines
874 B
XML
Raw Normal View History

2024-07-09 00:37:18 +02:00
<Project Sdk="Microsoft.NET.Sdk">
2022-04-12 21:43:50 -07:00
<PropertyGroup>
2025-11-14 15:05:39 +01:00
<TargetFramework>net10.0</TargetFramework>
<OutputType>Library</OutputType>
<AssemblyName>SQLiteHelper</AssemblyName>
2022-04-12 21:43:50 -07:00
<Description>SQLiteHelper for Duplicati</Description>
2024-04-23 17:06:32 +02:00
<RootNamespace>Duplicati.Library.SQLiteHelper</RootNamespace>
2025-05-16 10:25:08 +02:00
<Copyright>Copyright © 2025 Team Duplicati, MIT license</Copyright>
2024-07-09 00:37:18 +02:00
</PropertyGroup>
2025-05-12 10:52:18 +02:00
<ItemGroup>
<PackageReference Include="Microsoft.Data.Sqlite" Version="9.0.4" />
</ItemGroup>
2022-04-12 21:43:50 -07:00
2025-05-16 10:15:31 +02:00
<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>
2022-04-12 21:43:50 -07:00
</Project>