Skip to content

Commit a9b12aa

Browse files
authored
Merge pull request #4279 from smoothdeveloper/fix-4278
Fix for issue #4278
2 parents 906529e + bcaba92 commit a9b12aa

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

src/Paket.Core/Versioning/FrameworkHandling.fs

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -971,6 +971,12 @@ type FrameworkIdentifier =
971971
| DotNet8WithOs Net8Os.MacOs -> [ DotNetFramework FrameworkVersion.V8; XamarinMac ]
972972
| DotNet8WithOs Net8Os.TvOs -> [ DotNetFramework FrameworkVersion.V8; XamarinTV ]
973973
| DotNet8WithOs Net8Os.WatchOs -> [ DotNetFramework FrameworkVersion.V8; XamarinWatch ]
974+
// remark: for now, os versions for net 9 is alias to 8
975+
| DotNet9WithOs Net8Os.Android -> [ DotNetFramework FrameworkVersion.V9; MonoAndroid MonoAndroidVersion.V12 ]
976+
| DotNet9WithOs Net8Os.IOs -> [ DotNetFramework FrameworkVersion.V9; XamariniOS ]
977+
| DotNet9WithOs Net8Os.MacOs -> [ DotNetFramework FrameworkVersion.V9; XamarinMac ]
978+
| DotNet9WithOs Net8Os.TvOs -> [ DotNetFramework FrameworkVersion.V9; XamarinTV ]
979+
| DotNet9WithOs Net8Os.WatchOs -> [ DotNetFramework FrameworkVersion.V9; XamarinWatch ]
974980
| DotNet6Windows Net6WindowsVersion.V7_0 -> [ DotNetFramework FrameworkVersion.V6 ]
975981
| DotNet6Windows Net6WindowsVersion.V8_0 -> [ DotNetFramework FrameworkVersion.V6; DotNet6Windows Net6WindowsVersion.V7_0 ]
976982
| DotNet6Windows Net6WindowsVersion.V10_0_17763_0 -> [ DotNetFramework FrameworkVersion.V6; DotNet6Windows Net6WindowsVersion.V8_0 ]
@@ -987,6 +993,11 @@ type FrameworkIdentifier =
987993
| DotNet8Windows Net8WindowsVersion.V10_0_18362_0 -> [ DotNetFramework FrameworkVersion.V8; DotNet8Windows Net8WindowsVersion.V10_0_17763_0 ]
988994
| DotNet8Windows Net8WindowsVersion.V10_0_19041_0 -> [ DotNetFramework FrameworkVersion.V8; DotNet8Windows Net8WindowsVersion.V10_0_18362_0 ]
989995
// remark: for now, windows version for net 9 is alias to 8
996+
| DotNet9Windows Net8WindowsVersion.V7_0 -> [ DotNetFramework FrameworkVersion.V8; ]
997+
| DotNet9Windows Net8WindowsVersion.V8_0 -> [ DotNetFramework FrameworkVersion.V8; DotNet9Windows Net8WindowsVersion.V7_0]
998+
| DotNet9Windows Net8WindowsVersion.V10_0_17763_0 -> [ DotNetFramework FrameworkVersion.V8; DotNet9Windows Net8WindowsVersion.V8_0]
999+
| DotNet9Windows Net8WindowsVersion.V10_0_18362_0 -> [ DotNetFramework FrameworkVersion.V8; DotNet9Windows Net8WindowsVersion.V10_0_17763_0 ]
1000+
| DotNet9Windows Net8WindowsVersion.V10_0_19041_0 -> [ DotNetFramework FrameworkVersion.V8; DotNet9Windows Net8WindowsVersion.V10_0_18362_0 ]
9901001
| DotNetStandard DotNetStandardVersion.V1_0 -> [ ]
9911002
| DotNetStandard DotNetStandardVersion.V1_1 -> [ DotNetStandard DotNetStandardVersion.V1_0 ]
9921003
| DotNetStandard DotNetStandardVersion.V1_2 -> [ DotNetStandard DotNetStandardVersion.V1_1 ]
@@ -1024,6 +1035,7 @@ type FrameworkIdentifier =
10241035
| XCode XCodeVersion.V10 -> [ DotNetStandard DotNetStandardVersion.V1_6 ]
10251036
| XCode XCodeVersion.V11 -> [ DotNetStandard DotNetStandardVersion.V1_6 ]
10261037
| Unsupported _ -> []
1038+
10271039

10281040
module FrameworkDetection =
10291041

0 commit comments

Comments
 (0)