From 5c1c3e5b49408c0898799cb906b87c078214d472 Mon Sep 17 00:00:00 2001 From: Michael Ganss Date: Wed, 26 May 2021 13:14:20 +0200 Subject: [PATCH] Make sure #267 is tested --- XmlSchemaClassGenerator.Tests/Compiler.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/XmlSchemaClassGenerator.Tests/Compiler.cs b/XmlSchemaClassGenerator.Tests/Compiler.cs index f1f919ba..ff6789ff 100644 --- a/XmlSchemaClassGenerator.Tests/Compiler.cs +++ b/XmlSchemaClassGenerator.Tests/Compiler.cs @@ -62,7 +62,7 @@ public static Assembly Generate(string name, string pattern, Generator generator { if (Assemblies.ContainsKey(name)) { return Assemblies[name]; } - var files = Glob.ExpandNames(pattern); + var files = Glob.ExpandNames(pattern).OrderByDescending(f => f); return GenerateFiles(name, files, generatorPrototype); }