5 writes to BackgroundColor
Aspire.Dashboard (2)
ConsoleLogs\AnsiParser.cs (2)
231newState.BackgroundColor = color; 235newState.BackgroundColor = null;
Aspire.Dashboard.Tests (3)
ConsoleLogsTests\AnsiParserTests.cs (3)
165Assert.Equal(new AnsiParser.ParserState() { ForegroundColor = ConsoleColor.Green, BackgroundColor = ConsoleColor.Green }, result1.ResidualState); 217var expectedResidualState = new AnsiParser.ParserState() { ForegroundColor = ConsoleColor.Green, BackgroundColor = ConsoleColor.Green }; 229var expectedResidualState = new AnsiParser.ParserState() { Bright = true, BackgroundColor = ConsoleColor.Green };
2 references to BackgroundColor
Aspire.Dashboard (2)
ConsoleLogs\AnsiParser.cs (2)
459if (newState.BackgroundColor.HasValue) 533return state.BackgroundColor switch