Launch() public method

public Launch ( ) : Process
return System.Diagnostics.Process
コード例 #1
0
ファイル: MainForm.cs プロジェクト: tgiphil/MOSA-Project
        private void CompileCompleted()
        {
            foreach (var line in Builder.Counters)
            {
                AddCounters(line);
            }

            if (CheckKeyPressed())
                return;

            string imageFile = Options.BootLoaderImage != null ? Options.BootLoaderImage : Builder.ImageFile;

            Starter = new Starter(Options, AppLocations, imageFile, this, Builder.Linker);

            Starter.Launch();
        }
コード例 #2
0
ファイル: MainForm.cs プロジェクト: Zahovay/MOSA-Project
        private void CompileCompleted()
        {
            foreach (var line in Builder.Counters)
            {
                AddCounters(line);
            }

            if (CheckKeyPressed())
                return;

            Starter = new Starter(Options, AppLocations, Builder.ImageFile, this);

            Starter.Launch();

            if (Options.ExitOnLaunch)
            {
                Application.Exit();
            }
        }