Skip to content

Commit

Permalink
Merge pull request #1197 from nunit/issue-1193
Browse files Browse the repository at this point in the history
Recognize .NET 7 when installed
  • Loading branch information
CharliePoole committed Jun 30, 2022
2 parents 9b1284d + 1f9eb7e commit a1bfef7
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/NUnitEngine/nunit.engine.core/RuntimeFramework.cs
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,8 @@ private Version GetClrVersionForFramework(Version frameworkVersion)
return new Version(5, 0, 1);
case 6:
return new Version(6, 0, 0);
case 7:
return new Version(7, 0, 0);
}
break;
}
Expand Down

0 comments on commit a1bfef7

Please sign in to comment.