Skip to content

Commit

Permalink
sort references by path
Browse files Browse the repository at this point in the history
  • Loading branch information
matthid authored and forki committed Jul 12, 2016
1 parent 69ddfce commit fd3c3ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Paket.Core/ProjectFile.fs
Expand Up @@ -620,7 +620,7 @@ module ProjectFile =
let createItemGroup references =
let itemGroup = createNode "ItemGroup" project

for lib in references do
for lib in references |> Seq.sortBy (fun (r:Reference) -> r.Path) do
match lib with
| Reference.Library lib ->
let fi = FileInfo (normalizePath lib)
Expand Down

0 comments on commit fd3c3ac

Please sign in to comment.