5 writes to BackgroundColor
Aspire.Dashboard (2)
ConsoleLogs\AnsiParser.cs (2)
162newState.BackgroundColor = color; 166newState.BackgroundColor = null;
Aspire.Dashboard.Tests (3)
ConsoleLogsTests\AnsiParserTests.cs (3)
134Assert.Equal(new AnsiParser.ParserState() { ForegroundColor = ConsoleColor.Green, BackgroundColor = ConsoleColor.Green }, result1.ResidualState); 186var expectedResidualState = new AnsiParser.ParserState() { ForegroundColor = ConsoleColor.Green, BackgroundColor = ConsoleColor.Green }; 198var expectedResidualState = new AnsiParser.ParserState() { Bright = true, BackgroundColor = ConsoleColor.Green };
2 references to BackgroundColor
Aspire.Dashboard (2)
ConsoleLogs\AnsiParser.cs (2)
340if (newState.BackgroundColor.HasValue) 414return state.BackgroundColor switch