Skip to content

Commit

Permalink
Bump up packages
Browse files Browse the repository at this point in the history
  • Loading branch information
maythamfahmi committed May 4, 2024
1 parent e3f9e03 commit 04f508e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
6 changes: 3 additions & 3 deletions CryptoNet.UnitTests/CryptoNet.UnitTests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.7.0" />
<PackageReference Include="NUnit" Version="3.13.3" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
<PackageReference Include="NUnit" Version="4.1.0" />
<PackageReference Include="NUnit3TestAdapter" Version="4.5.0" />
<PackageReference Include="coverlet.collector" Version="6.0.0">
<PackageReference Include="coverlet.collector" Version="6.0.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
Expand Down
3 changes: 2 additions & 1 deletion CryptoNet.UnitTests/CryptoNetRsaTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
using CryptoNet.Models;
using CryptoNet.Utils;
using NUnit.Framework;
using NUnit.Framework.Legacy;
using Shouldly;

// ReSharper disable All
Expand Down Expand Up @@ -116,7 +117,7 @@ public void Encrypt_Decrypt_Documents_With_SelfGenerated_AsymmetricKey_That_Is_S
var decrypt = decryptClient.DecryptToBytes(encrypt);

// assert
Assert.AreEqual(testDocument, decrypt);
ClassicAssert.AreEqual(testDocument, decrypt);
}

[Test]
Expand Down
4 changes: 2 additions & 2 deletions CryptoNet/CryptoNet.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@
<Content Include="CryptoNetLogo-icon.ico">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</Content>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" />
<PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="7.0.3" PrivateAssets="All" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" />
<PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="8.0.0" PrivateAssets="All" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit 04f508e

Please sign in to comment.