Skip to content

Commit

Permalink
Recognize .NET 7 when installed
Browse files Browse the repository at this point in the history
  • Loading branch information
CharliePoole committed Jun 29, 2022
1 parent 96fb91b commit 1f9eb7e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"sdk": {
"version": "6.0.101",
"rollForward": "patch"
"rollForward": "feature"
}
}
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 1f9eb7e

Please sign in to comment.