diff --git a/Projects/Server/Main.cs b/Projects/Server/Main.cs index 13577440d..535327cbe 100644 --- a/Projects/Server/Main.cs +++ b/Projects/Server/Main.cs @@ -16,6 +16,7 @@ using System; using System.Collections.Generic; using System.Diagnostics; +using System.Globalization; using System.IO; using System.Linq; using System.Reflection; @@ -350,6 +351,8 @@ private static void HandleClosed() public static void Setup(Assembly applicationAssembly, Process process) { + CultureInfo.DefaultThreadCurrentCulture = CultureInfo.InvariantCulture; + Process = process; ApplicationAssembly = applicationAssembly; Assembly = Assembly.GetAssembly(typeof(Core));