Skip to content

Commit 92b88e9

Browse files
committed
Fix for the adapter issues 1065 and 1066
1 parent e868668 commit 92b88e9

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

GitVersion.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
next-version: 3.14.0
1+
next-version: 3.15.3
22
mode: ContinuousDelivery
33
legacy-semver-padding: 5
44
build-metadata-padding: 5

src/NUnitEngine/nunit.engine.core/RuntimeFramework.cs

+4-1
Original file line numberDiff line numberDiff line change
@@ -203,8 +203,11 @@ private Version GetClrVersionForFramework(Version frameworkVersion)
203203
return new Version(6, 0, 0);
204204
case 7:
205205
return new Version(7, 0, 0);
206+
case 8:
207+
return new Version(8, 0, 0);
208+
default:
209+
return new Version(frameworkVersion.Major, 0, 0);
206210
}
207-
break;
208211
}
209212

210213
throw new ArgumentException("Unknown framework version " + frameworkVersion.ToString(), "version");

0 commit comments

Comments
 (0)