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

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

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

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

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

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

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

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