Skip to content

Commit

Permalink
Bump dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
drasticactions committed Sep 13, 2024
1 parent c42e5d9 commit 4f6d1a9
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 10 deletions.
14 changes: 8 additions & 6 deletions Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -13,24 +13,26 @@
<PackageVersion Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.1" />
<PackageVersion Include="Microsoft.Extensions.Logging.Debug" Version="8.0.0" />
<PackageVersion Include="Microsoft.Identity.Client" Version="4.64.0" />
<PackageVersion Include="Microsoft.Testing.Extensions.TrxReport" Version="1.4.0" />
<PackageVersion Include="MSTest.TestFramework" Version="3.6.0" />
<PackageVersion Include="StyleCop.Analyzers" Version="1.2.0-beta.556" />
<PackageVersion Include="Sharprompt" Version="2.4.5" />
<PackageVersion Include="System.IdentityModel.Tokens.Jwt" Version="7.5.2" />
<PackageVersion Include="System.IdentityModel.Tokens.Jwt" Version="8.0.2" />
<PackageVersion Include="MimeTypes" Version="2.4.1" />
<PackageVersion Include="IpfsShipyard.Ipfs.Core" Version="0.1.0" />
<PackageVersion Include="PeterO.Cbor" Version="4.5.3" />
<PackageVersion Include="IpfsShipyard.Ipfs.Core" Version="0.6.0" />
<PackageVersion Include="PeterO.Cbor" Version="4.5.5" />
<PackageVersion Include="Microsoft.AspNetCore.Components.WebAssembly" Version="8.0.6" />
<PackageVersion Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="8.0.6" />
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.11.0" />
<PackageVersion Include="System.Memory" Version="4.5.5" />
<PackageVersion Include="System.Memory.Data" Version="8.0.0" />
<PackageVersion Include="System.Text.Json" Version="8.0.4" />
<PackageVersion Include="Drastic.Utilities" Version="1.0.10" />
<PackageVersion Include="PublishSPAforGitHubPages.Build" Version="2.1.0" />
<PackageVersion Include="Nerdbank.GitVersioning" Version="3.6.133" />
<PackageVersion Include="MSTest" Version="3.3.1" />
<PackageVersion Include="Microsoft.Testing.Extensions.CodeCoverage" Version="17.10.4" />
<PackageVersion Include="GitVersion.MSBuild" Version="5.8.1"/>
<PackageVersion Include="Microsoft.Testing.Extensions.CodeCoverage" Version="17.12.4" />
<PackageVersion Include="GitVersion.MSBuild" Version="6.0.2" />
<PackageVersion Include="IdentityModel" Version="7.0.0" />
<PackageVersion Include="ConsoleAppFramework" Version="5.2.3" />
</ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/FishyFlip.Tests/FishyFlip.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="MSTest.Sdk/3.3.1">
<Project Sdk="MSTest.Sdk/3.6.0">

<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
Expand Down
2 changes: 1 addition & 1 deletion src/FishyFlip/DPoP/DPoPProofTokenFactory.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public DPoPProofTokenFactory(string proofKey)
{
_jwk = new JsonWebKey(proofKey);

if (_jwk.Alg.IsNullOrEmpty())
if (string.IsNullOrEmpty(_jwk.Alg))
{
throw new ArgumentException("alg must be set on proof key");
}
Expand Down
6 changes: 5 additions & 1 deletion src/FishyFlip/FishyFlip.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,14 @@
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<WarningsAsErrors>nullable</WarningsAsErrors>
<IsAotCompatible Condition="'$(TargetFramework)' == 'net8.0'">true</IsAotCompatible>
<NoWarn>$(NoWarn);SA0001;SA1518;SA1208</NoWarn>
<NoWarn>$(NoWarn);SA0001;SA1518;SA1208;SA1210</NoWarn>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" />
<PackageReference Include="Microsoft.NET.Test.Sdk" />
<PackageReference Include="Microsoft.Testing.Extensions.CodeCoverage" />
<PackageReference Include="Microsoft.Testing.Extensions.TrxReport" />
<PackageReference Include="MSTest.TestFramework" />
<PackageReference Include="System.IdentityModel.Tokens.Jwt" />
<PackageReference Include="IpfsShipyard.Ipfs.Core" />
<PackageReference Include="PeterO.Cbor" />
Expand Down
8 changes: 8 additions & 0 deletions src/FishyFlip/Tools/StringExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,12 @@ internal static string GenerateValidFilename(string input)

return sanitizedInput;
}

/// <summary>
/// IsNullOrEmpty extension method for strings.
/// </summary>
/// <param name="input">String.</param>
/// <returns>If null or empty.</returns>
internal static bool IsNullOrEmpty(this string input)
=> string.IsNullOrEmpty(input);
}
2 changes: 1 addition & 1 deletion src/WhiteWindLib.Tests/WhiteWindLib.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="MSTest.Sdk/3.3.1">
<Project Sdk="MSTest.Sdk/3.6.0">

<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
Expand Down

0 comments on commit 4f6d1a9

Please sign in to comment.