aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Prebuild/src/Core/Nodes/ProjectNode.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--Prebuild/src/Core/Nodes/ProjectNode.cs14
1 files changed, 10 insertions, 4 deletions
diff --git a/Prebuild/src/Core/Nodes/ProjectNode.cs b/Prebuild/src/Core/Nodes/ProjectNode.cs
index 84d9f5d..5f03c4d 100644
--- a/Prebuild/src/Core/Nodes/ProjectNode.cs
+++ b/Prebuild/src/Core/Nodes/ProjectNode.cs
@@ -290,7 +290,9 @@ namespace Prebuild.Core.Nodes
290 { 290 {
291 get 291 get
292 { 292 {
293 return m_Configurations.Values; 293 ArrayList tmp = new ArrayList( ConfigurationsTable.Values);
294 tmp.Sort();
295 return tmp;
294 } 296 }
295 } 297 }
296 298
@@ -314,8 +316,10 @@ namespace Prebuild.Core.Nodes
314 { 316 {
315 get 317 get
316 { 318 {
317 return m_ReferencePaths; 319 ArrayList tmp = new ArrayList(m_ReferencePaths);
318 } 320 tmp.Sort();
321 return tmp;
322 }
319 } 323 }
320 324
321 /// <summary> 325 /// <summary>
@@ -326,7 +330,9 @@ namespace Prebuild.Core.Nodes
326 { 330 {
327 get 331 get
328 { 332 {
329 return m_References; 333 ArrayList tmp = new ArrayList(m_References);
334 tmp.Sort();
335 return tmp;
330 } 336 }
331 } 337 }
332 338