From 71807e3f40ab35830af94a5e9870b6b129ec08de Mon Sep 17 00:00:00 2001 From: Marco Minerva Date: Wed, 12 Nov 2025 15:32:17 +0100 Subject: [PATCH] Update .NET version to 10.x in workflow files Updated the `NET_VERSION` environment variable from `9.x` to `10.x` in the following GitHub Actions workflow files: - `publish.yml` for the `src/SimpleAuthentication` project - `publish_abstractions.yml` for the `src/SimpleAuthentication.Abstractions` project - `publish_swashbuckle.yml` for the `src/SimpleAuthentication.Swashbuckle` project This ensures that the projects are built and published using the latest .NET 10.x framework. --- .github/workflows/publish.yml | 2 +- .github/workflows/publish_abstractions.yml | 2 +- .github/workflows/publish_swashbuckle.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index cb27af8..d4d4ad3 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -12,7 +12,7 @@ on: workflow_dispatch: env: - NET_VERSION: '9.x' + NET_VERSION: '10.x' PROJECT_NAME: src/SimpleAuthentication PROJECT_FILE: SimpleAuthentication.csproj RELEASE_NAME: SimpleAuthenticationTools diff --git a/.github/workflows/publish_abstractions.yml b/.github/workflows/publish_abstractions.yml index 927b149..3224b22 100644 --- a/.github/workflows/publish_abstractions.yml +++ b/.github/workflows/publish_abstractions.yml @@ -12,7 +12,7 @@ on: workflow_dispatch: env: - NET_VERSION: '9.x' + NET_VERSION: '10.x' PROJECT_NAME: src/SimpleAuthentication.Abstractions PROJECT_FILE: SimpleAuthentication.Abstractions.csproj TAG_NAME: abstractions diff --git a/.github/workflows/publish_swashbuckle.yml b/.github/workflows/publish_swashbuckle.yml index a600e2a..cb8b52f 100644 --- a/.github/workflows/publish_swashbuckle.yml +++ b/.github/workflows/publish_swashbuckle.yml @@ -12,7 +12,7 @@ on: workflow_dispatch: env: - NET_VERSION: '9.x' + NET_VERSION: '10.x' PROJECT_NAME: src/SimpleAuthentication.Swashbuckle PROJECT_FILE: SimpleAuthentication.Swashbuckle.csproj TAG_NAME: swashbuckle