2024-07-09 00:37:18 +02:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2022-04-12 21:43:50 -07:00
|
|
|
|
2024-02-25 16:19:25 +01:00
|
|
|
<PropertyGroup>
|
2025-11-14 15:05:39 +01:00
|
|
|
<TargetFramework>net10.0</TargetFramework>
|
2024-02-25 16:19:25 +01:00
|
|
|
<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
|
|
|
|
2024-02-25 16:19:25 +01:00
|
|
|
<ItemGroup>
|
2025-05-12 10:54:17 +02:00
|
|
|
<PackageReference Include="Microsoft.Data.Sqlite" Version="9.0.4" />
|
2024-02-25 16:19:25 +01:00
|
|
|
</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>
|