Skip to content

Commit 69d25ea

Browse files
chore(build): update dotnet version in workflows (#39)
* build: build projects using dotnet 8.0. (#38) - Update all projects' target framework in `.NET8.0` (from `standard2.0`) - Update all projects' C# version to 12 (from 10) - Updated NuGet packages - Fixes for compilation: 1. `ConcertoConverter.deserializeWithGenericType` chose the wrong overloaded method. Added expected parameters to choose the correct method. 2. Added `Decorator.cs` to declare the existence of `AccordProject.Concerto.Decorator` namespace, because the code generation script added `using AccordProject.Concerto.Decorator` for some reason and the compilation failed. Signed-off-by: Yuval Bavli <[email protected]> Signed-off-by: Jamie Shorten <[email protected]> * chore(build): update dotnet version in workflows signed-off-by: Jamie Shorten <[email protected]> Signed-off-by: Jamie Shorten <[email protected]> --------- Signed-off-by: Yuval Bavli <[email protected]> Signed-off-by: Jamie Shorten <[email protected]> Signed-off-by: Jamie Shorten <[email protected]> Co-authored-by: ybavli-dsc <[email protected]>
1 parent 0fba930 commit 69d25ea

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
matrix:
1515
node-version: [18.x, 20.x]
16-
dotnet-version: ['6.0.x' ]
16+
dotnet-version: ['8.0.x' ]
1717
os:
1818
- ubuntu-latest
1919
# - windows-latest

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
matrix:
1414
node-version: [20.x]
15-
dotnet-version: ['6.0.x' ]
15+
dotnet-version: ['8.0.x' ]
1616
os:
1717
- ubuntu-latest
1818
# - windows-latest

0 commit comments

Comments
 (0)