mirror of
https://github.com/duplicati/duplicati.git
synced 2025-11-28 11:30:24 +08:00
29 lines
1.2 KiB
XML
29 lines
1.2 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<OutputType>Library</OutputType>
|
|
<Description>Storj backend for Duplicati</Description>
|
|
<Copyright>Copyright © 2025 Team Duplicati, MIT license</Copyright>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="SQLitePCLRaw.bundle_green" Version="2.1.10" />
|
|
<PackageReference Include="sqlite-net-pcl" Version="1.9.172" />
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
|
<PackageReference Include="uplink.NET" Version="2.14.3623" />
|
|
<PackageReference Include="uplink.NET.Win" Version="2.14.3623" />
|
|
<PackageReference Include="uplink.NET.Linux" Version="2.14.3623" />
|
|
<PackageReference Include="uplink.NET.Mac" Version="2.13.3484" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\Interface\Duplicati.Library.Interface.csproj" />
|
|
<ProjectReference Include="..\..\Common\Duplicati.Library.Common.csproj" />
|
|
<ProjectReference Include="..\..\Localization\Duplicati.Library.Localization.csproj" />
|
|
<ProjectReference Include="..\..\Utility\Duplicati.Library.Utility.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|