Moved things around to make cleaner build files. Implementing everything with `netstandard2.1` and then thin wrapper executables using .net5
15 lines
569 B
XML
15 lines
569 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netstandard2.1</TargetFramework>
|
|
<Copyright>LGPL, Copyright © Duplicati Team 2021</Copyright>
|
|
<Description>File backend for Duplicati</Description>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\Interface\Duplicati.Library.Interface.csproj" />
|
|
<ProjectReference Include="..\..\Localization\Duplicati.Library.Localization.csproj" />
|
|
<ProjectReference Include="..\..\Utility\Duplicati.Library.Utility.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project> |