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>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2024-09-27 16:14:40 +02:00
|
|
|
<PackageReference Include="jose-jwt" Version="5.0.0" />
|
2024-09-18 11:07:59 +02:00
|
|
|
<PackageReference Include="Websocket.Client" Version="5.1.2" />
|
|
|
|
|
</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>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="Microsoft.DotNet.Analyzers.Compatibility" Version="0.2.12-alpha">
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
</PackageReference>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|