Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Köplinger <alex.koeplinger@outlook.com>2018-04-06 00:01:47 +0300
committerAlexander Köplinger <alex.koeplinger@outlook.com>2018-04-06 00:01:47 +0300
commite1eaedb6e8fd19938917c845c169f636527ecf77 (patch)
tree3319db781e6e6005930bf291e1e88cfa4fa38df1 /msvc/scripts
parentbabf07532ba47a7104d6de22267feae5665ab44d (diff)
[genproj] Sort embedded resources by name
Diffstat (limited to 'msvc/scripts')
-rw-r--r--msvc/scripts/genproj.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/msvc/scripts/genproj.cs b/msvc/scripts/genproj.cs
index 0fce7de09dd..37b83d006e3 100644
--- a/msvc/scripts/genproj.cs
+++ b/msvc/scripts/genproj.cs
@@ -335,7 +335,7 @@ class MsbuildGenerator {
bool Optimize = true;
bool want_debugging_support = false;
string main = null;
- Dictionary<string, string> embedded_resources = new Dictionary<string, string> ();
+ SortedDictionary<string, string> embedded_resources = new SortedDictionary<string, string> ();
List<string> warning_as_error = new List<string> ();
List<int> ignore_warning = new List<int> ();
bool load_default_config = true;