Skip to content

Commit f777262

Browse files
authored
Merge pull request #4107 from arturcic/feature/sunset-net7.0
Sunset .net 7.0
2 parents e10cdae + fa2def9 commit f777262

18 files changed

+17
-42
lines changed

.github/workflows/_artifacts_linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- ubuntu.20.04
2929
- ubuntu.22.04
3030
- ubuntu.24.04
31-
targetFramework: [ '6.0', '7.0', '8.0' ]
31+
targetFramework: [ '6.0', '8.0' ]
3232

3333
steps:
3434
-

.github/workflows/_docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- ubuntu.20.04
2929
- ubuntu.22.04
3030
- ubuntu.24.04
31-
targetFramework: [ '6.0', '7.0', '8.0' ]
31+
targetFramework: [ '6.0', '8.0' ]
3232

3333
steps:
3434
-

.github/workflows/_docker_manifests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- ubuntu.20.04
2222
- ubuntu.22.04
2323
- ubuntu.24.04
24-
targetFramework: [ '6.0', '7.0', '8.0' ]
24+
targetFramework: [ '6.0', '8.0' ]
2525

2626
steps:
2727
-

.github/workflows/_unit_tests.yml

Lines changed: 1 addition & 1 deletion
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-13, macos-14]
17-
targetFramework: [ '6.0', '7.0', '8.0' ]
17+
targetFramework: [ '6.0', '8.0' ]
1818

1919
runs-on: ${{ matrix.os }}
2020
steps:

build/.run/UnitTest (7.0).run.xml

Lines changed: 0 additions & 23 deletions
This file was deleted.

build/artifacts/Tasks/ArtifactsDotnetToolTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ namespace Artifacts.Tasks;
55
[TaskName(nameof(ArtifactsDotnetToolTest))]
66
[TaskDescription("Tests the dotnet global tool in docker container")]
77
[TaskArgument(Arguments.DockerRegistry, Constants.DockerHub, Constants.GitHub)]
8-
[TaskArgument(Arguments.DockerDotnetVersion, Constants.Version60, Constants.Version70, Constants.Version80)]
8+
[TaskArgument(Arguments.DockerDotnetVersion, Constants.Version60, Constants.Version80)]
99
[TaskArgument(Arguments.DockerDistro, Constants.AlpineLatest, Constants.DebianLatest, Constants.UbuntuLatest)]
1010
[IsDependentOn(typeof(ArtifactsPrepare))]
1111
public class ArtifactsDotnetToolTest : FrostingTask<BuildContext>

build/artifacts/Tasks/ArtifactsMsBuildCoreTest.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ namespace Artifacts.Tasks;
55
[TaskName(nameof(ArtifactsMsBuildCoreTest))]
66
[TaskDescription("Tests the msbuild package in docker container")]
77
[TaskArgument(Arguments.DockerRegistry, Constants.DockerHub, Constants.GitHub)]
8-
[TaskArgument(Arguments.DockerDotnetVersion, Constants.Version60, Constants.Version70, Constants.Version80)]
8+
[TaskArgument(Arguments.DockerDotnetVersion, Constants.Version60, Constants.Version80)]
99
[TaskArgument(Arguments.DockerDistro, Constants.AlpineLatest, Constants.DebianLatest, Constants.UbuntuLatest)]
1010
[IsDependentOn(typeof(ArtifactsPrepare))]
1111
public class ArtifactsMsBuildCoreTest : FrostingTask<BuildContext>
@@ -32,7 +32,7 @@ public override void Run(BuildContext context)
3232

3333
var targetFramework = framework switch
3434
{
35-
Constants.Version60 or Constants.Version70 or Constants.Version80 => $"net{framework}",
35+
Constants.Version60 or Constants.Version80 => $"net{framework}",
3636
_ => framework
3737
};
3838

build/artifacts/Tasks/ArtifactsNativeTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ namespace Artifacts.Tasks;
55
[TaskName(nameof(ArtifactsNativeTest))]
66
[TaskDescription("Tests the native executables in docker container")]
77
[TaskArgument(Arguments.DockerRegistry, Constants.DockerHub, Constants.GitHub)]
8-
[TaskArgument(Arguments.DockerDotnetVersion, Constants.Version60, Constants.Version70, Constants.Version80)]
8+
[TaskArgument(Arguments.DockerDotnetVersion, Constants.Version60, Constants.Version80)]
99
[TaskArgument(Arguments.DockerDistro, Constants.AlpineLatest, Constants.DebianLatest, Constants.UbuntuLatest)]
1010
[IsDependentOn(typeof(ArtifactsPrepare))]
1111
public class ArtifactsNativeTest : FrostingTask<BuildContext>

build/artifacts/Tasks/ArtifactsPrepare.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ namespace Artifacts.Tasks;
55
[TaskName(nameof(ArtifactsPrepare))]
66
[TaskDescription("Pulls the docker images needed for testing the artifacts")]
77
[TaskArgument(Arguments.DockerRegistry, Constants.DockerHub, Constants.GitHub)]
8-
[TaskArgument(Arguments.DockerDotnetVersion, Constants.Version60, Constants.Version70, Constants.Version80)]
8+
[TaskArgument(Arguments.DockerDotnetVersion, Constants.Version60, Constants.Version80)]
99
[TaskArgument(Arguments.DockerDistro, Constants.AlpineLatest, Constants.DebianLatest, Constants.UbuntuLatest)]
1010
public class ArtifactsPrepare : FrostingTask<BuildContext>
1111
{

build/artifacts/Tasks/ArtifactsTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ namespace Artifacts.Tasks;
55
[TaskName(nameof(ArtifactsTest))]
66
[TaskDescription("Tests packages in docker container")]
77
[TaskArgument(Arguments.DockerRegistry, Constants.DockerHub, Constants.GitHub)]
8-
[TaskArgument(Arguments.DockerDotnetVersion, Constants.Version60, Constants.Version70, Constants.Version80)]
8+
[TaskArgument(Arguments.DockerDotnetVersion, Constants.Version60, Constants.Version80)]
99
[TaskArgument(Arguments.DockerDistro, Constants.AlpineLatest, Constants.DebianLatest, Constants.UbuntuLatest)]
1010
[IsDependentOn(typeof(ArtifactsNativeTest))]
1111
[IsDependentOn(typeof(ArtifactsDotnetToolTest))]

0 commit comments

Comments
 (0)