Skip to content

Commit b857997

Browse files
committed
Merge pull request #3752 from arturcic/feature/dotnet8
Add .net 8.0 support
2 parents afd3e0a + 36c5fc9 commit b857997

File tree

80 files changed

+139
-109
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

80 files changed

+139
-109
lines changed

.github/actions/docker-test/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ inputs:
99
default: 'debian.11'
1010
targetFramework:
1111
description: '.net version'
12-
default: '7.0'
12+
default: '8.0'
1313

1414
runs:
1515
using: 'composite'

.github/workflows/_artifacts_linux.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ jobs:
2323
strategy:
2424
fail-fast: false
2525
matrix:
26-
distro: [ alpine.3.16, alpine.3.17, centos.7, centos.stream.8, fedora.36, debian.11, ubuntu.20.04, ubuntu.22.04 ]
27-
targetFramework: [ '7.0', '6.0' ]
26+
distro: [ alpine.3.17, alpine.3.18, centos.stream.8, debian.11, fedora.37, ubuntu.20.04, ubuntu.22.04 ]
27+
targetFramework: [ '6.0', '7.0', '8.0' ]
2828

2929
steps:
3030
-

.github/workflows/_docker.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ jobs:
1919
strategy:
2020
fail-fast: false
2121
matrix:
22-
distro: [ alpine.3.16, alpine.3.17, centos.7, centos.stream.8, fedora.36, debian.11, ubuntu.20.04, ubuntu.22.04 ]
23-
targetFramework: [ '7.0', '6.0' ]
22+
distro: [ alpine.3.17, alpine.3.18, centos.stream.8, debian.11, fedora.37, ubuntu.20.04, ubuntu.22.04 ]
23+
targetFramework: [ '6.0', '7.0', '8.0' ]
2424

2525
steps:
2626
-

.github/workflows/_docker_manifests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ jobs:
1212
strategy:
1313
fail-fast: false
1414
matrix:
15-
distro: [ alpine.3.16, alpine.3.17, centos.7, centos.stream.8, fedora.36, debian.11, ubuntu.20.04, ubuntu.22.04 ]
16-
targetFramework: [ '7.0', '6.0' ]
15+
distro: [ alpine.3.17, alpine.3.18, centos.stream.8, debian.11, fedora.37, ubuntu.20.04, ubuntu.22.04 ]
16+
targetFramework: [ '6.0', '7.0', '8.0' ]
1717

1818
steps:
1919
-

.github/workflows/_unit_tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
fail-fast: false
1515
matrix:
1616
os: [windows-latest, ubuntu-latest, macos-latest]
17-
targetFramework: [net7.0, net6.0]
17+
targetFramework: [ 'net8.0', 'net7.0', 'net6.0' ]
1818

1919
runs-on: ${{ matrix.os }}
2020
steps:
@@ -34,6 +34,6 @@ jobs:
3434
-
3535
name: Test Summary
3636
uses: test-summary/action@v2
37-
if: matrix.targetFramework == 'net7.0'
37+
if: matrix.targetFramework == 'net8.0'
3838
with:
3939
paths: artifacts/test-results/*.results.xml

build/.run/Artifacts DotnetTool Test.run.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<option name="PROJECT_ARGUMENTS_TRACKING" value="1" />
1616
<option name="PROJECT_WORKING_DIRECTORY_TRACKING" value="0" />
1717
<option name="PROJECT_KIND" value="DotNetCore" />
18-
<option name="PROJECT_TFM" value="net7.0" />
18+
<option name="PROJECT_TFM" value="net8.0" />
1919
<method v="2">
2020
<option name="Build" />
2121
</method>

build/.run/Artifacts Executable Test.run.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<option name="PROJECT_ARGUMENTS_TRACKING" value="1" />
1616
<option name="PROJECT_WORKING_DIRECTORY_TRACKING" value="0" />
1717
<option name="PROJECT_KIND" value="DotNetCore" />
18-
<option name="PROJECT_TFM" value="net7.0" />
18+
<option name="PROJECT_TFM" value="net8.0" />
1919
<method v="2">
2020
<option name="Build" />
2121
</method>

build/.run/Artifacts MsBuildCore Test.run.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<option name="PROJECT_ARGUMENTS_TRACKING" value="1" />
1616
<option name="PROJECT_WORKING_DIRECTORY_TRACKING" value="0" />
1717
<option name="PROJECT_KIND" value="DotNetCore" />
18-
<option name="PROJECT_TFM" value="net7.0" />
18+
<option name="PROJECT_TFM" value="net8.0" />
1919
<method v="2">
2020
<option name="Build" />
2121
</method>

build/.run/Artifacts MsBuildFull Test.run.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<option name="PROJECT_ARGUMENTS_TRACKING" value="1" />
1616
<option name="PROJECT_WORKING_DIRECTORY_TRACKING" value="0" />
1717
<option name="PROJECT_KIND" value="DotNetCore" />
18-
<option name="PROJECT_TFM" value="net7.0" />
18+
<option name="PROJECT_TFM" value="net8.0" />
1919
<method v="2">
2020
<option name="Build" />
2121
</method>

build/.run/Artifacts Native Test.run.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<option name="PROJECT_ARGUMENTS_TRACKING" value="1" />
1616
<option name="PROJECT_WORKING_DIRECTORY_TRACKING" value="0" />
1717
<option name="PROJECT_KIND" value="DotNetCore" />
18-
<option name="PROJECT_TFM" value="net7.0" />
18+
<option name="PROJECT_TFM" value="net8.0" />
1919
<method v="2">
2020
<option name="Build" />
2121
</method>

0 commit comments

Comments
 (0)