File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
csharp/framework/migration-guide
visualbasic/framework/migration-guide Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ private static void Get45PlusFromRegistry()
2525 // Checking the version using >= enables forward compatibility.
2626 string CheckFor45PlusVersion ( int releaseKey )
2727 {
28- if ( releaseKey >= 528049 )
28+ if ( releaseKey >= 528040 )
2929 return "4.8 or later" ;
3030 if ( releaseKey >= 461808 )
3131 return "4.7.2" ;
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ Public Module GetDotNetVersion
1919
2020 ' Checking the version using >= will enable forward compatibility.
2121 Private Function CheckFor45PlusVersion(releaseKey As Integer ) As String
22- If releaseKey >= 528049 Then
22+ If releaseKey >= 528040 Then
2323 Return "4.8 or later"
2424 Else If releaseKey >= 461808 Then
2525 Return "4.7.2"
You can’t perform that action at this time.
0 commit comments