Skip to content

Commit 307877e

Browse files
committed
Update GitHub workflows and documentation for .NET 9 support
1 parent 6a1f7e0 commit 307877e

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.github/workflows/build_and_test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: Build test and pack
22

33
on:
44
push:
5-
branches: [main, develop]
5+
branches: [master, develop]
66
pull_request:
7-
branches: [main, develop]
7+
branches: [master, develop]
88

99
jobs:
1010
build:
@@ -18,7 +18,7 @@ jobs:
1818
- name: Setup .NET
1919
uses: actions/setup-dotnet@v4
2020
with:
21-
dotnet-version: 8.0.x
21+
dotnet-version: 9.0.x
2222

2323
- name: Restore dependencies
2424
run: dotnet restore

.github/workflows/dockerhub-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- name: Setup .NET
3131
uses: actions/setup-dotnet@v4
3232
with:
33-
dotnet-version: 8.0.x
33+
dotnet-version: 9.0.x
3434

3535
- name: Restore dependencies
3636
run: dotnet restore

.github/workflows/nuget-publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313
description: "Packages Version"
1414

1515
# Default value if no value is explicitly provided
16-
default: "6.2.0"
16+
default: "7.0.0"
1717

1818
# Input has to be provided for the workflow to run
1919
required: true
@@ -30,7 +30,7 @@ jobs:
3030
- name: Setup .NET
3131
uses: actions/setup-dotnet@v4
3232
with:
33-
dotnet-version: 8.0.x
33+
dotnet-version: 9.0.x
3434

3535
- name: Restore dependencies
3636
run: dotnet restore

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545

4646
# Genocs .NET library
4747

48-
This repo contains a set of libraries to build LOB (Line Of Business) applications. The library is open source and built to be PRODUCTION READY. The library is built on top of .NET8, it is designed and maintained by Genocs.
48+
This repo contains a set of libraries to build LOB (Line Of Business) applications. The library is open source and built to be PRODUCTION READY. The library is built on top of .NET9, it is designed and maintained by Genocs.
4949

5050
Packages are available on [NuGet Genocs](https://www.nuget.org/profiles/gioema_nocco).
5151

src/Genocs.Auth/README_NUGET.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
This package contains a set of functionalities to handling authorization logic as JWT.
44
First of all I have to say thanks to devmentors.
55

6-
The libraries are built using net8, net7, net6.
6+
The libraries are built using .NET9, .NET8, .NET7, .NET6.
77

88

99
## Description

0 commit comments

Comments
 (0)