UnityEditor.Scripting.ManagedProgram.ManagedProgram C# (CSharp) Method

ManagedProgram() public method

public ManagedProgram ( string monodistribution, string profile, string executable, string arguments, bool setMonoEnvironmentVariables, Action setupStartInfo ) : System
monodistribution string
profile string
executable string
arguments string
setMonoEnvironmentVariables bool
setupStartInfo Action
return System
        public ManagedProgram(string monodistribution, string profile, string executable, string arguments, bool setMonoEnvironmentVariables, Action<ProcessStartInfo> setupStartInfo)
        {
            string[] parts = new string[] { monodistribution, "bin", "mono" };
            string str = PathCombine(parts);
            if (Application.platform == RuntimePlatform.WindowsEditor)
            {
                str = CommandLineFormatter.PrepareFileName(str + ".exe");
            }
            ProcessStartInfo info = new ProcessStartInfo {
                Arguments = CommandLineFormatter.PrepareFileName(executable) + " " + arguments,
                CreateNoWindow = true,
                FileName = str,
                RedirectStandardError = true,
                RedirectStandardOutput = true,
                WorkingDirectory = Application.dataPath + "/..",
                UseShellExecute = false
            };
            if (setMonoEnvironmentVariables)
            {
                string[] textArray2 = new string[] { monodistribution, "lib", "mono", profile };
                string str2 = PathCombine(textArray2);
                info.EnvironmentVariables["MONO_PATH"] = str2;
                string[] textArray3 = new string[] { monodistribution, "etc" };
                info.EnvironmentVariables["MONO_CFG_DIR"] = PathCombine(textArray3);
            }
            if (setupStartInfo != null)
            {
                setupStartInfo(info);
            }
            base._process.StartInfo = info;
        }

Same methods

ManagedProgram::ManagedProgram ( string monodistribution, string profile, string executable, string arguments, Action setupStartInfo ) : System