Skip to content

Commit c64800d

Browse files
committed
Added net9.0 target and updated minor version nuget dependencies
1 parent 61c6c42 commit c64800d

File tree

4 files changed

+17
-17
lines changed

4 files changed

+17
-17
lines changed

samples/ScottBrady.IdentityModel.Samples.AspNetCore/ScottBrady.IdentityModel.Samples.AspNetCore.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
</PropertyGroup>
66

77
<ItemGroup>
8-
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="8.0.3" />
9-
<PackageReference Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation" Version="8.0.3" />
10-
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="8.0.3" />
11-
<PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" Version="8.0.3" />
8+
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="8.0.11" />
9+
<PackageReference Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation" Version="8.0.11" />
10+
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="8.0.11" />
11+
<PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" Version="8.0.11" />
1212
</ItemGroup>
1313

1414
<ItemGroup>

src/ScottBrady.IdentityModel.AspNetCore/ScottBrady.IdentityModel.AspNetCore.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>net6.0;net8.0</TargetFrameworks>
4+
<TargetFrameworks>net6.0;net8.0;net9.0</TargetFrameworks>
55
<Authors>Scott Brady</Authors>
66
<Description>ASP.NET Core Tag helpers for password rules and validation.</Description>
77
<PackageIcon>icon.png</PackageIcon>

src/ScottBrady.IdentityModel/ScottBrady.IdentityModel.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net8.0</TargetFramework>
4+
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
55
<Authors>Scott Brady</Authors>
66
<Description>Extensions for Microsoft.IdentityModel, including support for EdDSA signed JWTs.</Description>
77
<PackageIcon>icon.png</PackageIcon>
@@ -17,9 +17,9 @@
1717
</PropertyGroup>
1818

1919
<ItemGroup>
20-
<PackageReference Include="BouncyCastle.Cryptography" Version="2.3.0" />
21-
<PackageReference Include="Microsoft.IdentityModel.Tokens" Version="7.5.0" />
22-
<PackageReference Include="Microsoft.IdentityModel.JsonWebTokens" Version="7.5.0" />
20+
<PackageReference Include="BouncyCastle.Cryptography" Version="2.4.0" />
21+
<PackageReference Include="Microsoft.IdentityModel.Tokens" Version="7.7.1" />
22+
<PackageReference Include="Microsoft.IdentityModel.JsonWebTokens" Version="7.7.1" />
2323
<PackageReference Include="SecurityCodeScan.VS2019" Version="5.6.7" PrivateAssets="all" />
2424
</ItemGroup>
2525

test/ScottBrady.IdentityModel.Tests/ScottBrady.IdentityModel.Tests.csproj

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net8.0</TargetFramework>
4+
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
55
<LangVersion>latest</LangVersion>
66
</PropertyGroup>
77

88
<ItemGroup>
99
<PackageReference Include="AutoFixture" Version="4.18.1" />
10-
<PackageReference Include="FluentAssertions" Version="6.12.0" />
11-
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="8.0.3" />
12-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
13-
<PackageReference Include="Moq" Version="4.20.70" />
14-
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="7.5.0" />
15-
<PackageReference Include="xunit" Version="2.7.0" />
16-
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.7">
10+
<PackageReference Include="FluentAssertions" Version="6.12.2" />
11+
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="8.0.11" />
12+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
13+
<PackageReference Include="Moq" Version="4.20.72" />
14+
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="7.7.1" />
15+
<PackageReference Include="xunit" Version="2.9.2" />
16+
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2">
1717
<PrivateAssets>all</PrivateAssets>
1818
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1919
</PackageReference>

0 commit comments

Comments
 (0)