File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -70,7 +70,8 @@ private void IndexReferences()
70
70
foreach ( var info in assemblyInfoByFileName . Values
71
71
. OrderBy ( info => info . Name )
72
72
. ThenBy ( info => info . NetCoreVersion ?? emptyVersion )
73
- . ThenBy ( info => info . Version ?? emptyVersion ) )
73
+ . ThenBy ( info => info . Version ?? emptyVersion )
74
+ . ThenBy ( info => info . Filename ) )
74
75
{
75
76
foreach ( var index in info . IndexStrings )
76
77
{
Original file line number Diff line number Diff line change @@ -322,7 +322,11 @@ private void ResolveConflicts()
322
322
}
323
323
324
324
var emptyVersion = new Version ( 0 , 0 ) ;
325
- sortedReferences = sortedReferences . OrderBy ( r => r . NetCoreVersion ?? emptyVersion ) . ThenBy ( r => r . Version ?? emptyVersion ) . ToList ( ) ;
325
+ sortedReferences = sortedReferences
326
+ . OrderBy ( r => r . NetCoreVersion ?? emptyVersion )
327
+ . ThenBy ( r => r . Version ?? emptyVersion )
328
+ . ThenBy ( r => r . Filename )
329
+ . ToList ( ) ;
326
330
327
331
var finalAssemblyList = new Dictionary < string , AssemblyInfo > ( ) ;
328
332
You can’t perform that action at this time.
0 commit comments