@@ -13,14 +13,14 @@ jobs:
1313 name : Testing
1414 strategy :
1515 matrix :
16- dotnet : [ 'netcoreapp3.1', 'net6 .0', 'net7 .0', 'net462', 'net48' ]
16+ dotnet : [ 'net8 .0', 'net9 .0', 'net462', 'net48' ]
1717 steps :
1818 - name : Checkout code base
1919 uses : actions/checkout@v2
2020
2121 - uses : actions/setup-dotnet@v3
2222 with :
23- dotnet-version : ' 7 .0.x'
23+ dotnet-version : ' 9 .0.x'
2424
2525 - name : Run tests
2626 run : dotnet test --verbosity normal -f ${{ matrix.dotnet }}
@@ -30,14 +30,14 @@ jobs:
3030 name : Building
3131 strategy :
3232 matrix :
33- dotnet : [ 'netcoreapp3.1', 'net6 .0', 'net7 .0', 'net462', 'net48' ]
33+ dotnet : [ 'net8 .0', 'net9 .0', 'net462', 'net48' ]
3434 steps :
3535 - name : Checkout code base
3636 uses : actions/checkout@v2
3737
3838 - uses : actions/setup-dotnet@v3
3939 with :
40- dotnet-version : ' 7 .0.x'
40+ dotnet-version : ' 9 .0.x'
4141
4242 - name : Cleaning
4343 run : dotnet clean
@@ -59,34 +59,34 @@ jobs:
5959 name : Generate docs and publish artifacts
6060 needs : ['build']
6161 steps :
62- - name : Get cache - net6 .0
62+ - name : Get cache - net8 .0
6363 uses : actions/cache@v2
6464 with :
65- path : build/net6 .0
66- key : ${{ runner.os }}-build-net6 .0
65+ path : build/net8 .0
66+ key : ${{ runner.os }}-build-net8 .0
6767
68- - name : Get cache - net7 .0
68+ - name : Get cache - net9 .0
6969 uses : actions/cache@v2
7070 with :
71- path : build/net7 .0
72- key : ${{ runner.os }}-build-net7 .0
71+ path : build/net9 .0
72+ key : ${{ runner.os }}-build-net9 .0
7373
7474 - uses : actions/setup-dotnet@v3
7575 with :
76- dotnet-version : ' 7 .0.x'
76+ dotnet-version : ' 9 .0.x'
7777
7878 - name : Install Xml to Markdown tool
7979 run : dotnet new tool-manifest && dotnet tool install EAVFW.Extensions.Docs.TransformToMarkdown
8080
8181 - name : Generate docs
82- run : dotnet tool run tomd --input build/net7 .0/ExpressionEngine.xml --output Documentation.md
82+ run : dotnet tool run tomd --input build/net9 .0/ExpressionEngine.xml --output Documentation.md
8383
8484 - name : Archive build to artifacts
8585 uses : actions/upload-artifact@v2.3.1
8686 with :
8787 name : Build
8888 path : |
89- build/net6 .0/
90- build/net7 .0/
89+ build/net8 .0/
90+ build/net9 .0/
9191 Documentation.md
9292 retention-days : 5
0 commit comments