* Updated license-updater to update csproj files * License updates
38 lines
1.7 KiB
XML
38 lines
1.7 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.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="1.0.6" />
|
|
<PackageReference Include="Azure.Identity" Version="1.13.0" />
|
|
<PackageReference Include="Azure.Security.KeyVault.Secrets" Version="4.7.0" />
|
|
<PackageReference Include="Google.Cloud.SecretManager.V1" Version="2.5.0" />
|
|
<PackageReference Include="SharpAESCrypt" Version="2.0.2" />
|
|
<PackageReference Include="VaultSharp" Version="1.7.0" />
|
|
<PackageReference Include="Meziantou.Framework.Win32.CredentialManager" Version="1.7.0" />
|
|
<!-- Important! Avalonia also depends on this package, so make sure the versions are in sync -->
|
|
<PackageReference Include="Tmds.DBus.Protocol" Version="0.20.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>
|
|
|
|
<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>
|