Files
duplicati/Duplicati/Library/Compression/Duplicati.Library.Compression.csproj
T
2018-11-02 22:45:07 +01:00

32 lines
1.2 KiB
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<Version>2.0.0.7</Version>
<Copyright>LGPL, Copyright © Duplicati Team 2015</Copyright>
<Product>Duplicati.Library.Compression</Product>
<Company>Duplicati Team</Company>
<Authors>Duplicati Team</Authors>
<Description>Compression implementation for Duplicati</Description>
<PackageId>Compression</PackageId>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="sharpcompress" Version="0.21.1" />
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' != 'netstandard2.0' ">
<Reference Include="managed-lzma">
<HintPath>..\..\..\thirdparty\ManagedLZMA\managed-lzma.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Interface\Duplicati.Library.Interface.csproj" />
<ProjectReference Include="..\Localization\Duplicati.Library.Localization.csproj" />
<ProjectReference Include="..\Utility\Duplicati.Library.Utility.csproj" />
<ProjectReference Include="..\Logging\Duplicati.Library.Logging.csproj" />
</ItemGroup>
</Project>