From f259e78b70714fd452cc24cb3011f02b31becdf4 Mon Sep 17 00:00:00 2001 From: Roman Bukin Date: Tue, 21 May 2024 13:56:43 +0300 Subject: [PATCH] Update .NET SDK and libs. --- .github/workflows/CI.yml | 4 ++-- .github/workflows/Release.yml | 4 ++-- README.md | 4 ++-- demo/WebAuthn.Net.Demo.FidoConformance/README.md | 2 +- .../WebAuthn.Net.Demo.FidoConformance.csproj | 2 +- global.json | 4 ++-- .../WebAuthn.Net.Storage.MySql.csproj | 2 +- .../WebAuthn.Net.Storage.PostgreSql.csproj | 4 ++-- src/WebAuthn.Net/WebAuthn.Net.csproj | 6 +++--- .../WebAuthn.Net.Tests.Unit/WebAuthn.Net.Tests.Unit.csproj | 2 +- 10 files changed, 17 insertions(+), 17 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index d73d02d..05e09fe 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -16,14 +16,14 @@ jobs: - name: Setup .NET SDK 6.0 uses: actions/setup-dotnet@v4 with: - dotnet-version: 6.0.420 + dotnet-version: 6.0.422 source-url: ${{ secrets.NUGET_SOURCE }} env: NUGET_AUTH_TOKEN: ${{ secrets.PACKAGES_TOKEN }} - name: Setup .NET SDK 8.0 uses: actions/setup-dotnet@v4 with: - dotnet-version: 8.0.203 + dotnet-version: 8.0.205 source-url: ${{ secrets.NUGET_SOURCE }} env: NUGET_AUTH_TOKEN: ${{ secrets.PACKAGES_TOKEN }} diff --git a/.github/workflows/Release.yml b/.github/workflows/Release.yml index d152843..daa95bc 100644 --- a/.github/workflows/Release.yml +++ b/.github/workflows/Release.yml @@ -21,14 +21,14 @@ jobs: - name: Setup .NET SDK 6.0 uses: actions/setup-dotnet@v4 with: - dotnet-version: 6.0.420 + dotnet-version: 6.0.422 source-url: ${{ secrets.NUGET_SOURCE }} env: NUGET_AUTH_TOKEN: ${{ secrets.PACKAGES_TOKEN }} - name: Setup .NET SDK 8.0 uses: actions/setup-dotnet@v4 with: - dotnet-version: 8.0.203 + dotnet-version: 8.0.205 source-url: ${{ secrets.NUGET_SOURCE }} env: NUGET_AUTH_TOKEN: ${{ secrets.PACKAGES_TOKEN }} diff --git a/README.md b/README.md index e9f8914..a9f7df1 100644 --- a/README.md +++ b/README.md @@ -61,8 +61,8 @@ The documentation for each project is described in its README.md file. ### Required dependencies -- [.NET SDK 6.0.420+](https://dotnet.microsoft.com/en-us/download/dotnet/6.0) -- [.NET SDK 8.0.203+](https://dotnet.microsoft.com/en-us/download/dotnet/8.0) +- [.NET SDK 6.0.422+](https://dotnet.microsoft.com/en-us/download/dotnet/6.0) +- [.NET SDK 8.0.205+](https://dotnet.microsoft.com/en-us/download/dotnet/8.0) ## Tips for Contribution diff --git a/demo/WebAuthn.Net.Demo.FidoConformance/README.md b/demo/WebAuthn.Net.Demo.FidoConformance/README.md index 02e10cb..c5f8664 100644 --- a/demo/WebAuthn.Net.Demo.FidoConformance/README.md +++ b/demo/WebAuthn.Net.Demo.FidoConformance/README.md @@ -16,7 +16,7 @@ This project contains a demo application designed for passing the [FIDO conforma These steps need to be performed only if you have not done them before. -1. Install .NET SDK versions [6.0.420+](https://dotnet.microsoft.com/en-us/download/dotnet/6.0) and [8.0.203+](https://dotnet.microsoft.com/en-us/download/dotnet/8.0). +1. Install .NET SDK versions [6.0.422+](https://dotnet.microsoft.com/en-us/download/dotnet/6.0) and [8.0.205+](https://dotnet.microsoft.com/en-us/download/dotnet/8.0). 2. [Trust the ASP.NET Core HTTPS development certificate](https://learn.microsoft.com/en-us/aspnet/core/security/enforcing-ssl?view=aspnetcore-8.0&tabs=visual-studio%2Clinux-ubuntu#trust-the-aspnet-core-https-development-certificate-on-windows-and-macos) ### Starting the FIDO Conformance test diff --git a/demo/WebAuthn.Net.Demo.FidoConformance/WebAuthn.Net.Demo.FidoConformance.csproj b/demo/WebAuthn.Net.Demo.FidoConformance/WebAuthn.Net.Demo.FidoConformance.csproj index bdfe172..8988f77 100644 --- a/demo/WebAuthn.Net.Demo.FidoConformance/WebAuthn.Net.Demo.FidoConformance.csproj +++ b/demo/WebAuthn.Net.Demo.FidoConformance/WebAuthn.Net.Demo.FidoConformance.csproj @@ -35,7 +35,7 @@ - + diff --git a/global.json b/global.json index e0cb54c..5746de7 100644 --- a/global.json +++ b/global.json @@ -1,7 +1,7 @@ { "sdk": { - "version": "8.0.203", - "rollForward": "latestFeature", + "version": "8.0.205", + "rollForward": "latestPatch", "allowPrerelease": false } } diff --git a/src/WebAuthn.Net.Storage.MySql/WebAuthn.Net.Storage.MySql.csproj b/src/WebAuthn.Net.Storage.MySql/WebAuthn.Net.Storage.MySql.csproj index 47d37fe..d3ca314 100644 --- a/src/WebAuthn.Net.Storage.MySql/WebAuthn.Net.Storage.MySql.csproj +++ b/src/WebAuthn.Net.Storage.MySql/WebAuthn.Net.Storage.MySql.csproj @@ -32,6 +32,6 @@ - + diff --git a/src/WebAuthn.Net.Storage.PostgreSql/WebAuthn.Net.Storage.PostgreSql.csproj b/src/WebAuthn.Net.Storage.PostgreSql/WebAuthn.Net.Storage.PostgreSql.csproj index 5bbac57..c265855 100644 --- a/src/WebAuthn.Net.Storage.PostgreSql/WebAuthn.Net.Storage.PostgreSql.csproj +++ b/src/WebAuthn.Net.Storage.PostgreSql/WebAuthn.Net.Storage.PostgreSql.csproj @@ -27,11 +27,11 @@ - + - + diff --git a/src/WebAuthn.Net/WebAuthn.Net.csproj b/src/WebAuthn.Net/WebAuthn.Net.csproj index ea7195e..bf4b42b 100644 --- a/src/WebAuthn.Net/WebAuthn.Net.csproj +++ b/src/WebAuthn.Net/WebAuthn.Net.csproj @@ -27,17 +27,17 @@ - + - + - + diff --git a/tests/WebAuthn.Net.Tests.Unit/WebAuthn.Net.Tests.Unit.csproj b/tests/WebAuthn.Net.Tests.Unit/WebAuthn.Net.Tests.Unit.csproj index 48dbb50..4f53edd 100644 --- a/tests/WebAuthn.Net.Tests.Unit/WebAuthn.Net.Tests.Unit.csproj +++ b/tests/WebAuthn.Net.Tests.Unit/WebAuthn.Net.Tests.Unit.csproj @@ -11,7 +11,7 @@ - + all runtime; build; native; contentfiles; analyzers; buildtransitive