2024-09-18 11:07:59 +02:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
2025-01-22 21:04:19 +01:00
|
|
|
<Copyright>Copyright © 2025 Team Duplicati, MIT license</Copyright>
|
2024-09-18 11:07:59 +02:00
|
|
|
<RootNamespace>Duplicati.Library.RemoteControl</RootNamespace>
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
</PropertyGroup>
|
2025-05-16 10:22:51 +02:00
|
|
|
|
2024-09-18 11:07:59 +02:00
|
|
|
<ItemGroup>
|
2025-06-24 07:51:26 +02:00
|
|
|
<PackageReference Include="jose-jwt" Version="5.2.0" />
|
|
|
|
|
<PackageReference Include="Websocket.Client" Version="5.2.0" />
|
2024-09-18 11:07:59 +02:00
|
|
|
</ItemGroup>
|
2025-05-16 10:22:51 +02:00
|
|
|
|
2024-09-18 11:07:59 +02:00
|
|
|
<ItemGroup>
|
2025-05-16 10:25:08 +02:00
|
|
|
<ProjectReference Include="..\Logging\Duplicati.Library.Logging.csproj" />
|
2024-09-18 11:07:59 +02:00
|
|
|
<ProjectReference Include="..\Utility\Duplicati.Library.Utility.csproj" />
|
|
|
|
|
<ProjectReference Include="..\Encryption\Duplicati.Library.Encryption.csproj" />
|
|
|
|
|
<ProjectReference Include="..\Main\Duplicati.Library.Main.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|