Fix for old mono versions

This commit is contained in:
UnknownShadow200 2024-10-09 20:58:51 +11:00
parent 0dc86b3809
commit 29e205e26f

View File

@ -193,9 +193,9 @@ namespace MCGalaxy.Modules.Compiling
string root = RuntimeEnvironment.GetRuntimeDirectory();
string[] paths = new string[] {
Path.Combine(root, "csc.exe"), // C# compiler
Path.Combine(root, "mcs.exe"), // old Mono C# compiler
Path.Combine(root, "mcs"), // old Mono C# compiler
Path.Combine(root, "csc.exe"), // C# compiler
Path.Combine(root, @"../bin/mcs"), // old Mono C# compiler
Path.Combine(root, "mcs.exe"), // old Mono C# compiler
};
foreach (string path in paths)