Files
duplicati/Duplicati/Library/SQLiteHelper/Duplicati.Library.SQLiteHelper.csproj
T
Kenneth Skovhede 8892ff7df3 Cleaned up all .csproj files.
Moved things around to make cleaner build files.
Implementing everything with `netstandard2.1` and then thin wrapper executables using .net5
2021-04-03 13:57:02 +02:00

45 lines
1.9 KiB
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<Copyright>LGPL, Copyright © Duplicati Team 2021</Copyright>
<Description>SQLiteHelper for Duplicati</Description>
</PropertyGroup>
<ItemGroup>
<Content Include="..\..\..\thirdparty\SQLite\win64\System.Data.SQLite.dll">
<Link>SQLite\win64\System.Data.SQLite.dll</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="..\..\..\thirdparty\SQLite\win32\System.Data.SQLite.dll">
<Link>SQLite\win32\System.Data.SQLite.dll</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="..\..\..\thirdparty\SQLite\pinvoke\System.Data.SQLite.dll">
<Link>SQLite\pinvoke\System.Data.SQLite.dll</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="..\..\..\thirdparty\SQLite\win32\SQLite.Interop.dll">
<Link>SQLite\win32\SQLite.Interop.dll</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="..\..\..\thirdparty\SQLite\win64\SQLite.Interop.dll">
<Link>SQLite\win64\SQLite.Interop.dll</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<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>
<Reference Include="UnixSupport">
<HintPath>..\..\..\thirdparty\UnixSupport\UnixSupport.dll</HintPath>
</Reference>
</ItemGroup>
</Project>