File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
csharp/framework/migration-guide
visualbasic/framework/migration-guide Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -25,8 +25,8 @@ private static void Get45PlusFromRegistry()
2525 // Checking the version using >= enables forward compatibility.
2626 string CheckFor45PlusVersion ( int releaseKey )
2727 {
28- if ( releaseKey > 461814 )
29- return "4.7.2 or later" ;
28+ if ( releaseKey >= 528049 )
29+ return "4.8 or later" ;
3030 if ( releaseKey >= 461808 )
3131 return "4.7.2" ;
3232 if ( releaseKey >= 461308 )
Original file line number Diff line number Diff line change @@ -19,8 +19,8 @@ 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 > 461814 Then
23- Return "4.7.2 or later"
22+ If releaseKey >= 528049 Then
23+ Return "4.8 or later"
2424 Else If releaseKey >= 461808 Then
2525 Return "4.7.2"
2626 Else If releaseKey >= 461308 Then
You can’t perform that action at this time.
0 commit comments