Revert "improve determinism"

This reverts commit 66358a2880.
This commit is contained in:
Jason Perkins 2015-10-26 15:59:07 -04:00
parent 32151316a8
commit 04840ec2f0
2 changed files with 0 additions and 11 deletions

View File

@ -879,11 +879,6 @@
function m.projectReferences(prj)
local refs = project.getdependencies(prj, 'linkOnly')
if #refs > 0 then
-- sort dependencies by uuid.
table.sort(refs, function(a,b)
return a.uuid < b.uuid
end)
p.push('<ItemGroup>')
for _, ref in ipairs(refs) do
local relpath = vstudio.path(prj, vstudio.projectfile(ref))

View File

@ -152,12 +152,6 @@
function container.bakeChildren(self)
for class in container.eachChildClass(self.class) do
local children = self[class.pluralName]
-- sort children by name.
table.sort(children, function(a,b)
return a.name < b.name
end)
for i = 1, #children do
local ctx = container.bake(children[i])
children[i] = ctx