Skip to content

Commit c20209d

Browse files
authored
Modify .NET setup in GitHub Actions workflow
Updated .NET version to 9.0.x in GitHub Actions workflow.
1 parent f6e8e36 commit c20209d

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/dotnetcore.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@ jobs:
77
runs-on: ubuntu-latest
88
steps:
99
- uses: actions/checkout@v4
10-
- uses: actions/setup-dotnet@v4
10+
- name: Setup .NET 9
11+
uses: actions/setup-dotnet@v4
1112
with:
12-
dotnet-version: '9.0.9' # or 7.0.x
13+
dotnet-version: '9.0.x' # or 7.0.x
14+
- name: Build
1315
- run: dotnet build --configuration Release

0 commit comments

Comments
 (0)