Ejemplo n.º 1
0
 public BuildEngineVerboseFormat(OutputClassificationColorManager colorManager)
 {
     DisplayName = "Xenko BuildEngine Verbose";
     this.IsBold = false;
     var classificationColor = colorManager.GetClassificationColor(BuildEngineVerbose);
     ForegroundColor = classificationColor.ForegroundColor;
     BackgroundColor = classificationColor.BackgroundColor;
 }
Ejemplo n.º 2
0
 public BuildEngineFatalFormat(OutputClassificationColorManager colorManager)
 {
     DisplayName = "Xenko BuildEngine Fatal";
     this.IsBold = true;
     var classificationColor = colorManager.GetClassificationColor(BuildEngineFatal);
     ForegroundColor = classificationColor.ForegroundColor;
     BackgroundColor = classificationColor.BackgroundColor;
 }