public BuildEngineVerboseFormat(OutputClassificationColorManager colorManager)
 {
     DisplayName = "Paradox BuildEngine Verbose";
     this.IsBold = false;
     var classificationColor = colorManager.GetClassificationColor(BuildEngineVerbose);
     ForegroundColor = classificationColor.ForegroundColor;
     BackgroundColor = classificationColor.BackgroundColor;
 }
 public BuildEngineFatalFormat(OutputClassificationColorManager colorManager)
 {
     DisplayName = "Paradox BuildEngine Fatal";
     this.IsBold = true;
     var classificationColor = colorManager.GetClassificationColor(BuildEngineFatal);
     ForegroundColor = classificationColor.ForegroundColor;
     BackgroundColor = classificationColor.BackgroundColor;
 }