We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f80d217 commit b3b0725Copy full SHA for b3b0725
2 files changed
Properties/AssemblyInfo.cs
@@ -34,5 +34,5 @@
34
// You can specify all the values or you can default the Build and Revision Numbers
35
// by using the '*' as shown below:
36
// [assembly: AssemblyVersion("1.0.*")]
37
-[assembly: AssemblyVersion("19.08.0.*")]
+[assembly: AssemblyVersion("19.09.0.*")]
38
[assembly: AssemblyFileVersion("1.0.0.0")]
src/GameFinderManager.cs
@@ -21,6 +21,7 @@ static GameFinderManager() {
21
continue;
22
Finders.Add((GameFinder) type.GetConstructor(_EmptyTypeArray).Invoke(_EmptyObjectArray));
23
}
24
+ Finders.Sort((a, b) => a.Priority.CompareTo(b.Priority));
25
26
27
public static string Find(GameModInfo info) {
0 commit comments