diff options
author | UbitUmarov | 2017-06-12 20:36:36 +0100 |
---|---|---|
committer | UbitUmarov | 2017-06-12 20:36:36 +0100 |
commit | 25371933b4809e0c542fa7de795e09b1b40bb21e (patch) | |
tree | 7c8a557f1d5b338405448e565fc3f4e8a06c6354 /share/32BitLaunch/Robust.32BitLaunch/Program.cs | |
parent | add Robust32.exe so recovering the option to run it also in 32bit on windows (diff) | |
download | opensim-SC_OLD-25371933b4809e0c542fa7de795e09b1b40bb21e.zip opensim-SC_OLD-25371933b4809e0c542fa7de795e09b1b40bb21e.tar.gz opensim-SC_OLD-25371933b4809e0c542fa7de795e09b1b40bb21e.tar.bz2 opensim-SC_OLD-25371933b4809e0c542fa7de795e09b1b40bb21e.tar.xz |
update Robust32.exe build files
Diffstat (limited to 'share/32BitLaunch/Robust.32BitLaunch/Program.cs')
-rw-r--r-- | share/32BitLaunch/Robust.32BitLaunch/Program.cs | 23 |
1 files changed, 1 insertions, 22 deletions
diff --git a/share/32BitLaunch/Robust.32BitLaunch/Program.cs b/share/32BitLaunch/Robust.32BitLaunch/Program.cs index 490414c..ec5943e 100644 --- a/share/32BitLaunch/Robust.32BitLaunch/Program.cs +++ b/share/32BitLaunch/Robust.32BitLaunch/Program.cs | |||
@@ -26,35 +26,14 @@ | |||
26 | */ | 26 | */ |
27 | 27 | ||
28 | using System; | 28 | using System; |
29 | using log4net; | ||
30 | 29 | ||
31 | namespace Robust._32BitLaunch | 30 | namespace Robust32 |
32 | { | 31 | { |
33 | class Program | 32 | class Program |
34 | { | 33 | { |
35 | static void Main(string[] args) | 34 | static void Main(string[] args) |
36 | { | 35 | { |
37 | log4net.Config.XmlConfigurator.Configure(); | ||
38 | |||
39 | System.Console.WriteLine("32-bit OpenSim executor"); | ||
40 | System.Console.WriteLine("-----------------------"); | ||
41 | System.Console.WriteLine(""); | ||
42 | System.Console.WriteLine("This application is compiled for 32-bit CPU and will run under WOW32 or similar."); | ||
43 | System.Console.WriteLine("All 64-bit incompatibilities should be gone."); | ||
44 | System.Console.WriteLine(""); | ||
45 | System.Threading.Thread.Sleep(300); | ||
46 | try | ||
47 | { | ||
48 | global::OpenSim.Server.OpenSimServer.Main(args); | 36 | global::OpenSim.Server.OpenSimServer.Main(args); |
49 | } | ||
50 | catch (Exception ex) | ||
51 | { | ||
52 | System.Console.WriteLine("OpenSim threw an exception:"); | ||
53 | System.Console.WriteLine(ex.ToString()); | ||
54 | System.Console.WriteLine(""); | ||
55 | System.Console.WriteLine("Application will now terminate!"); | ||
56 | System.Console.WriteLine(""); | ||
57 | } | ||
58 | } | 37 | } |
59 | } | 38 | } |
60 | } | 39 | } |