mirror of
https://github.com/duplicati/duplicati.git
synced 2025-11-27 19:10:29 +08:00
23 lines
851 B
XML
23 lines
851 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<Copyright>Copyright © 2025 Team Duplicati, MIT license</Copyright>
|
|
<RootNamespace>Duplicati.Library.RemoteControl</RootNamespace>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="jose-jwt" Version="5.2.0" />
|
|
<PackageReference Include="Websocket.Client" Version="5.2.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Logging\Duplicati.Library.Logging.csproj" />
|
|
<ProjectReference Include="..\Utility\Duplicati.Library.Utility.csproj" />
|
|
<ProjectReference Include="..\Encryption\Duplicati.Library.Encryption.csproj" />
|
|
<ProjectReference Include="..\Main\Duplicati.Library.Main.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|