2018-06-24 14:49:30 +02:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
2015-01-26 11:13:54 +01:00
|
|
|
<PropertyGroup>
|
2021-04-03 14:13:32 +02:00
|
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
2021-04-03 13:57:02 +02:00
|
|
|
<Copyright>LGPL, Copyright © Duplicati Team 2021</Copyright>
|
2018-06-24 14:49:30 +02:00
|
|
|
<Description>SQLiteHelper for Duplicati</Description>
|
2022-03-04 23:13:36 -08:00
|
|
|
</PropertyGroup>
|
2018-06-24 14:49:30 +02:00
|
|
|
|
2015-01-26 11:13:54 +01:00
|
|
|
<ItemGroup>
|
2021-04-03 20:38:29 -07:00
|
|
|
<ProjectReference Include="..\..\UnixSupport\UnixSupport.csproj" />
|
2018-06-24 14:49:30 +02: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" />
|
2015-01-26 11:13:54 +01:00
|
|
|
</ItemGroup>
|
2018-06-24 14:49:30 +02:00
|
|
|
|
2021-04-03 21:47:54 +02:00
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="Microsoft.DotNet.Analyzers.Compatibility" Version="0.2.12-alpha">
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
</PackageReference>
|
2022-03-08 20:13:53 -08:00
|
|
|
<PackageReference Include="Stub.System.SQLite.Core.NetStandard.freebsd" Version="1.0.115.0" />
|
|
|
|
|
<PackageReference Include="System.Data.SQLite.Core" Version="1.0.115" />
|
2021-04-03 21:47:54 +02:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
2021-01-02 22:26:00 -08:00
|
|
|
</Project>
|