public BuildEngineFatalFormat(OutputClassificationColorManager colorManager)
            {
                DisplayName = "Paradox BuildEngine Fatal";
                this.IsBold = true;
                var classificationColor = colorManager.GetClassificationColor(BuildEngineFatal);

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

                ForegroundColor = classificationColor.ForegroundColor;
                BackgroundColor = classificationColor.BackgroundColor;
            }
Beispiel #3
0
            public BuildEngineDebugFormat(OutputClassificationColorManager colorManager)
            {
                DisplayName = "Xenko BuildEngine Debug";
                this.IsBold = false;
                var classificationColor = colorManager.GetClassificationColor(BuildEngineDebug);

                ForegroundColor = classificationColor.ForegroundColor;
                BackgroundColor = classificationColor.BackgroundColor;
            }
Beispiel #4
0
            public BuildEngineErrorFormat(OutputClassificationColorManager colorManager)
            {
                DisplayName = "Xenko BuildEngine Error";
                this.IsBold = true;
                var classificationColor = colorManager.GetClassificationColor(BuildEngineError);

                ForegroundColor = classificationColor.ForegroundColor;
                BackgroundColor = classificationColor.BackgroundColor;
            }
Beispiel #5
0
            public AssetCompilerVerboseFormat(OutputClassificationColorManager colorManager)
            {
                DisplayName = "Xenko AssetCompiler Verbose";
                this.IsBold = false;
                var classificationColor = colorManager.GetClassificationColor(AssetCompilerVerbose);

                ForegroundColor = classificationColor.ForegroundColor;
                BackgroundColor = classificationColor.BackgroundColor;
            }
Beispiel #6
0
            public AssetCompilerFatalFormat(OutputClassificationColorManager colorManager)
            {
                DisplayName = "Xenko AssetCompiler Fatal";
                this.IsBold = true;
                var classificationColor = colorManager.GetClassificationColor(AssetCompilerFatal);

                ForegroundColor = classificationColor.ForegroundColor;
                BackgroundColor = classificationColor.BackgroundColor;
            }
Beispiel #7
0
            public AssetCompilerDebugFormat(OutputClassificationColorManager colorManager)
            {
                DisplayName = "Stride AssetCompiler Debug";
                this.IsBold = false;
                var classificationColor = colorManager.GetClassificationColor(AssetCompilerDebug);

                ForegroundColor = classificationColor.ForegroundColor;
                BackgroundColor = classificationColor.BackgroundColor;
            }