Skip to content

Commit 71807e3

Browse files
committed
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.
1 parent e22ef65 commit 71807e3

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212
workflow_dispatch:
1313

1414
env:
15-
NET_VERSION: '9.x'
15+
NET_VERSION: '10.x'
1616
PROJECT_NAME: src/SimpleAuthentication
1717
PROJECT_FILE: SimpleAuthentication.csproj
1818
RELEASE_NAME: SimpleAuthenticationTools

.github/workflows/publish_abstractions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212
workflow_dispatch:
1313

1414
env:
15-
NET_VERSION: '9.x'
15+
NET_VERSION: '10.x'
1616
PROJECT_NAME: src/SimpleAuthentication.Abstractions
1717
PROJECT_FILE: SimpleAuthentication.Abstractions.csproj
1818
TAG_NAME: abstractions

.github/workflows/publish_swashbuckle.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212
workflow_dispatch:
1313

1414
env:
15-
NET_VERSION: '9.x'
15+
NET_VERSION: '10.x'
1616
PROJECT_NAME: src/SimpleAuthentication.Swashbuckle
1717
PROJECT_FILE: SimpleAuthentication.Swashbuckle.csproj
1818
TAG_NAME: swashbuckle

0 commit comments

Comments
 (0)