Moved things around to make cleaner build files. Implementing everything with `netstandard2.1` and then thin wrapper executables using .net5
26 lines
980 B
XML
26 lines
980 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netstandard2.1</TargetFramework>
|
|
<Copyright>LGPL, Copyright © Duplicati Team 2021</Copyright>
|
|
<Description>Compression implementation for Duplicati</Description>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="sharpcompress" Version="0.24.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup Condition=" '$(TargetFramework)' != 'netstandard2.1' ">
|
|
<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> |