Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion samples/MultiReplica.Sample/MultiReplica.Sample.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<ProjectReference Include="../../src/PostQuantum.DataProtection/PostQuantum.DataProtection.csproj" />
<ProjectReference Include="../../src/PostQuantum.DataProtection.AzureKeyVault/PostQuantum.DataProtection.AzureKeyVault.csproj" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="8.0.1" />
<PackageReference Include="Microsoft.AspNetCore.DataProtection" Version="8.0.27" />
<PackageReference Include="Microsoft.AspNetCore.DataProtection" Version="10.0.8" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,9 @@
<ItemGroup>
<!-- BouncyCastle is only needed on net8.0 and net9.0 — net10.0 uses System.Security.Cryptography.MLKem directly. -->
<PackageReference Include="BouncyCastle.Cryptography" Version="2.6.2" Condition="'$(TargetFramework)' != 'net10.0'" />
<PackageReference Include="Microsoft.AspNetCore.DataProtection" Version="10.0.8" />
<PackageReference Include="PostQuantum.KeyManagement" Version="0.4.0-preview.2" />
<PackageReference Include="Microsoft.AspNetCore.DataProtection.Abstractions" Version="8.0.27" />
<PackageReference Include="Microsoft.AspNetCore.DataProtection.Abstractions" Version="10.0.8" />
<PackageReference Include="Microsoft.AspNetCore.DataProtection.Extensions" Version="8.0.27" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="8.0.2" />
<PackageReference Include="Microsoft.Extensions.Options" Version="8.0.2" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@
</PackageReference>
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="8.0.1" />
<PackageReference Include="Microsoft.Extensions.Logging" Version="8.0.1" />
<PackageReference Include="Microsoft.AspNetCore.DataProtection" Version="8.0.27" />
<PackageReference Include="Microsoft.AspNetCore.DataProtection" Version="10.0.8" />
<PackageReference Include="Microsoft.AspNetCore.DataProtection.Extensions" Version="8.0.27" />
<PackageReference Include="System.Security.Cryptography.Xml" Version="8.0.3" />
<PackageReference Include="System.Security.Cryptography.Xml" Version="10.0.8" />
<PackageReference Include="PostQuantum.KeyManagement" Version="0.4.0-preview.2" />
</ItemGroup>

Expand Down
Loading