/// <summary> /// Writes the given text as Informational output to both BuildStage output and to the console real time. /// </summary> /// <param name="text"></param> protected void AOT_Info(string text) { StageOutput.Add(LineOutColored.Info(text)); if (ShouldLogToConsoleRealTime) { Console.WriteLine(text, Color.Cyan); } }