We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 44be7df commit 6f82e63Copy full SHA for 6f82e63
csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/AssemblyCacheExtensions.cs
@@ -21,8 +21,8 @@ public static IOrderedEnumerable<AssemblyInfo> OrderAssemblyInfosByPreference(th
21
: assemblies.OrderBy(initialOrdering);
22
23
return ordered
24
- .ThenBy(info => info.NetCoreVersion ?? emptyVersion)
25
.ThenBy(info => info.Version ?? emptyVersion)
+ .ThenBy(info => info.NetCoreVersion ?? emptyVersion)
26
.ThenBy(info => info.Filename);
27
}
28
0 commit comments