aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/share/32BitLaunch/OpenSim.32BitLaunch/Program.cs
diff options
context:
space:
mode:
authoronefang2019-05-19 21:24:15 +1000
committeronefang2019-05-19 21:24:15 +1000
commit5e4d6cab00cb29cd088ab7b62ab13aff103b64cb (patch)
treea9fbc62df9eb2d1d9ba2698d8552eae71eca20d8 /share/32BitLaunch/OpenSim.32BitLaunch/Program.cs
parentAdd a build script. (diff)
downloadopensim-SC_OLD-5e4d6cab00cb29cd088ab7b62ab13aff103b64cb.zip
opensim-SC_OLD-5e4d6cab00cb29cd088ab7b62ab13aff103b64cb.tar.gz
opensim-SC_OLD-5e4d6cab00cb29cd088ab7b62ab13aff103b64cb.tar.bz2
opensim-SC_OLD-5e4d6cab00cb29cd088ab7b62ab13aff103b64cb.tar.xz
Dump OpenSim 0.9.0.1 into it's own branch.
Diffstat (limited to '')
-rw-r--r--share/32BitLaunch/OpenSim.32BitLaunch/Program.cs24
1 files changed, 2 insertions, 22 deletions
diff --git a/share/32BitLaunch/OpenSim.32BitLaunch/Program.cs b/share/32BitLaunch/OpenSim.32BitLaunch/Program.cs
index 52806b8..ca6c359 100644
--- a/share/32BitLaunch/OpenSim.32BitLaunch/Program.cs
+++ b/share/32BitLaunch/OpenSim.32BitLaunch/Program.cs
@@ -27,33 +27,13 @@
27 27
28using System; 28using System;
29 29
30namespace OpenSim._32BitLaunch 30namespace OpenSim32
31{ 31{
32 class Program 32 class Program
33 { 33 {
34 static void Main(string[] args) 34 static void Main(string[] args)
35 { 35 {
36 log4net.Config.XmlConfigurator.Configure(); 36 global::OpenSim.Application.Main(args);
37
38 System.Console.WriteLine("32-bit OpenSim executor");
39 System.Console.WriteLine("-----------------------");
40 System.Console.WriteLine("");
41 System.Console.WriteLine("This application is compiled for 32-bit CPU and will run under WOW32 or similar.");
42 System.Console.WriteLine("All 64-bit incompatibilities should be gone.");
43 System.Console.WriteLine("");
44 System.Threading.Thread.Sleep(300);
45 try
46 {
47 global::OpenSim.Application.Main(args);
48 }
49 catch (Exception ex)
50 {
51 System.Console.WriteLine("OpenSim threw an exception:");
52 System.Console.WriteLine(ex.ToString());
53 System.Console.WriteLine("");
54 System.Console.WriteLine("Application will now terminate!");
55 System.Console.WriteLine("");
56 }
57 } 37 }
58 } 38 }
59} 39}