duplicati/Duplicati/Library/SecretProvider/Duplicati.Library.SecretProvider.csproj
2025-11-14 17:26:32 +01:00

32 lines
1.5 KiB
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<OutputType>Library</OutputType>
<RootNamespace>Duplicati.Library.SecretProvider</RootNamespace>
<Copyright>Copyright © 2025 Team Duplicati, MIT license</Copyright>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="AWSSDK.SecretsManager.Caching" Version="2.0.0" />
<PackageReference Include="Azure.Identity" Version="1.17.0" />
<PackageReference Include="Azure.Security.KeyVault.Secrets" Version="4.8.0" />
<PackageReference Include="Google.Cloud.SecretManager.V1" Version="2.6.0" />
<PackageReference Include="SharpAESCrypt" Version="2.0.3" />
<PackageReference Include="VaultSharp" Version="1.17.5.1" />
<PackageReference Include="Meziantou.Framework.Win32.CredentialManager" Version="1.7.4" />
<!-- Important! Avalonia also depends on this package, so make sure the versions are in sync -->
<PackageReference Include="Tmds.DBus.Protocol" Version="0.21.2" />
<!-- Force load a newer version here -->
<PackageReference Include="System.Security.Cryptography.Pkcs" Version="10.0.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Interface\Duplicati.Library.Interface.csproj" />
<ProjectReference Include="..\Localization\Duplicati.Library.Localization.csproj" />
<ProjectReference Include="..\Utility\Duplicati.Library.Utility.csproj" />
</ItemGroup>
</Project>