Skip to content

Commit

Permalink
Upgraded to .NET 9 and the NuGet packages
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Klaus committed Dec 29, 2024
1 parent ba250da commit a4d8602
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ jobs:
# Fix for MinVer
fetch-depth: 100

- name: Setup .NET 7
- name: Setup .NET 9
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.x
dotnet-version: 9.x

- name: Restore dependencies
run: dotnet restore
Expand Down
6 changes: 3 additions & 3 deletions AzureADAuthClient/AzureADAuthClient.csproj
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk.Web">

<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="8.0.10" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.OpenIdConnect" Version="8.0.10" />
<PackageReference Include="Microsoft.Identity.Web" Version="3.2.2" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="9.0.0" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.OpenIdConnect" Version="9.0.0" />
<PackageReference Include="Microsoft.Identity.Web" Version="3.5.0" />
</ItemGroup>

<ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project>
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<TargetFramework>net9.0</TargetFramework>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<Features>strict</Features>
Expand All @@ -17,6 +17,6 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="NSwag.AspNetCore" Version="14.1.0" />
<PackageReference Include="NSwag.AspNetCore" Version="14.2.0" />
</ItemGroup>
</Project>
4 changes: 2 additions & 2 deletions OpenIdDict.Client.Api/OpenIdDict.Client.Api.csproj
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk.Web">

<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="8.0.10" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.OpenIdConnect" Version="8.0.10" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="9.0.0" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.OpenIdConnect" Version="9.0.0" />
</ItemGroup>

<ItemGroup>
Expand Down
10 changes: 5 additions & 5 deletions OpenIdDict.Server/OpenIdDict.Server.csproj
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<Project Sdk="Microsoft.NET.Sdk.Web">

<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="8.0.1" />
<PackageReference Include="Microsoft.Identity.Web" Version="3.2.2" />
<PackageReference Include="OpenIddict.Server.AspNetCore" Version="5.8.0" />
<PackageReference Include="OpenIddict.Validation.AspNetCore" Version="5.8.0" />
<PackageReference Include="OpenIddict.Validation.ServerIntegration" Version="5.8.0" />
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="9.0.0" />
<PackageReference Include="Microsoft.Identity.Web" Version="3.5.0" />
<PackageReference Include="OpenIddict.Server.AspNetCore" Version="6.0.0" />
<PackageReference Include="OpenIddict.Validation.AspNetCore" Version="6.0.0" />
<PackageReference Include="OpenIddict.Validation.ServerIntegration" Version="6.0.0" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit a4d8602

Please sign in to comment.