2024-02-25 16:19:25 +01:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2022-04-12 21:43:50 -07:00
|
|
|
|
2024-02-25 16:19:25 +01:00
|
|
|
<PropertyGroup>
|
2024-03-01 14:29:54 +01:00
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
2024-02-25 16:19:25 +01:00
|
|
|
<OutputType>Library</OutputType>
|
|
|
|
|
</PropertyGroup>
|
2022-04-12 21:43:50 -07:00
|
|
|
|
2024-02-25 16:19:25 +01:00
|
|
|
<ItemGroup>
|
2022-04-12 21:43:50 -07:00
|
|
|
<PackageReference Include="DnsClient" Version="1.4.0" />
|
2024-02-29 21:55:17 -08:00
|
|
|
<PackageReference Include="ARSoft.Tools.Net" Version="1.8.1" />
|
|
|
|
|
<PackageReference Include="Sharp.Xmpp" Version="1.0.2.2" />
|
2024-03-04 14:00:55 +01:00
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
2022-04-12 21:43:50 -07:00
|
|
|
<PackageReference Include="MailKit" Version="2.4.1" />
|
|
|
|
|
<PackageReference Include="MimeKit" Version="2.4.1" />
|
2024-02-25 16:19:25 +01:00
|
|
|
</ItemGroup>
|
2022-04-12 21:43:50 -07:00
|
|
|
|
2024-02-25 16:19:25 +01:00
|
|
|
<ItemGroup>
|
2022-04-12 21:43:50 -07:00
|
|
|
<ProjectReference Include="..\..\Logging\Duplicati.Library.Logging.csproj" />
|
2024-02-25 16:19:25 +01:00
|
|
|
<ProjectReference Include="..\..\Interface\Duplicati.Library.Interface.csproj" />
|
2022-04-12 21:43:50 -07:00
|
|
|
<ProjectReference Include="..\..\Snapshots\Duplicati.Library.Snapshots.csproj" />
|
2024-02-25 16:19:25 +01:00
|
|
|
<ProjectReference Include="..\..\Utility\Duplicati.Library.Utility.csproj" />
|
|
|
|
|
<ProjectReference Include="..\..\Localization\Duplicati.Library.Localization.csproj" />
|
|
|
|
|
<ProjectReference Include="..\..\Backend\OAuthHelper\Duplicati.Library.OAuthHelper.csproj" />
|
|
|
|
|
</ItemGroup>
|
2022-04-12 21:43:50 -07:00
|
|
|
|
2024-02-25 16:19:25 +01:00
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="run-script-example.sh">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Content>
|
|
|
|
|
</ItemGroup>
|
2022-04-12 21:43:50 -07:00
|
|
|
|
2024-02-25 16:19:25 +01:00
|
|
|
<ItemGroup>
|
2022-04-12 21:43:50 -07:00
|
|
|
<PackageReference Include="Microsoft.DotNet.Analyzers.Compatibility" Version="0.2.12-alpha">
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
</PackageReference>
|
2024-02-25 16:19:25 +01:00
|
|
|
</ItemGroup>
|
2022-04-12 21:43:50 -07:00
|
|
|
|
2024-04-18 14:09:53 +02:00
|
|
|
</Project>
|