Skip to content

Commit c0499e7

Browse files
authored
Remove TestWindowsNet60 build target (#619)
* Remove `TestWindowsNet60` build target * Update Nuke build schema
1 parent ba128ed commit c0499e7

File tree

2 files changed

+0
-7
lines changed

2 files changed

+0
-7
lines changed

.nuke/build.schema.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,6 @@
9696
"TestLinux",
9797
"TestWindows",
9898
"TestWindowsNet48",
99-
"TestWindowsNet60",
10099
"TestWindowsNet80"
101100
]
102101
}
@@ -123,7 +122,6 @@
123122
"TestLinux",
124123
"TestWindows",
125124
"TestWindowsNet48",
126-
"TestWindowsNet60",
127125
"TestWindowsNet80"
128126
]
129127
}

build/Build.cs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -111,11 +111,6 @@ ITargetDefinition CompileDefinition(ITargetDefinition targetDefinition, [CanBeNu
111111
[PublicAPI]
112112
Target TestWindowsNet80 => _ => TestDefinition(_, CompileNet80, "net8.0", runDotMemoryTests: false);
113113

114-
// This temporary target is included to run the net8 tests on a pipeline configured for net6.0
115-
// It can be removed once the build pipeline is updated to reference the new target.
116-
[PublicAPI]
117-
Target TestWindowsNet60 => t => t.DependsOn(TestWindowsNet80);
118-
119114
ITargetDefinition TestDefinition(ITargetDefinition targetDefinition, Target dependsOn, [CanBeNull] string framework, bool runDotMemoryTests)
120115
{
121116
return targetDefinition

0 commit comments

Comments
 (0)