Skip to content

Commit 7e53f96

Browse files
author
GUIGHIL benjamin
committed
Add Comment XML for travis
1 parent 2c1d5f6 commit 7e53f96

File tree

1 file changed

+33
-5
lines changed

1 file changed

+33
-5
lines changed

src/PowerShellEditorServices/Session/Host/EditorServicesPSHostUserInterface.cs

+33-5
Original file line numberDiff line numberDiff line change
@@ -688,30 +688,58 @@ private void WriteDebuggerBanner(DebuggerStopEventArgs eventArgs)
688688
}
689689
}
690690

691+
/// <summary>
692+
///
693+
/// </summary>
691694
public static ConsoleColor BackgroundColor
692695
{
693696
get;
694697
set;
695698
}
696699

697-
// Error colors
700+
/// <summary>
701+
///
702+
/// </summary>
698703
public ConsoleColor ErrorForegroundColor { get; set; } = ConsoleColor.Red;
704+
/// <summary>
705+
///
706+
/// </summary>
699707
public ConsoleColor ErrorBackgroundColor { get; set; } = BackgroundColor;
700708

701-
// Warning colors
709+
/// <summary>
710+
///
711+
/// </summary>
702712
public ConsoleColor WarningForegroundColor { get; set; } = ConsoleColor.Yellow;
713+
/// <summary>
714+
///
715+
/// </summary>
703716
public ConsoleColor WarningBackgroundColor { get; set; } = BackgroundColor;
704717

705-
// Debug colors
718+
/// <summary>
719+
///
720+
/// </summary>
706721
public ConsoleColor DebugForegroundColor { get; set; } = ConsoleColor.Yellow;
722+
/// <summary>
723+
///
724+
/// </summary>
707725
public ConsoleColor DebugBackgroundColor { get; set; } = BackgroundColor;
708726

709-
// Verbose colors
727+
/// <summary>
728+
///
729+
/// </summary>
710730
public ConsoleColor VerboseForegroundColor { get; set; } = ConsoleColor.Yellow;
731+
/// <summary>
732+
///
733+
/// </summary>
711734
public ConsoleColor VerboseBackgroundColor { get; set; } = BackgroundColor;
712735

713-
// Progress colors
736+
/// <summary>
737+
///
738+
/// </summary>
714739
public ConsoleColor ProgressForegroundColor { get; set; } = ConsoleColor.Yellow;
740+
/// <summary>
741+
///
742+
/// </summary>
715743
public ConsoleColor ProgressBackgroundColor { get; set; } = ConsoleColor.DarkCyan;
716744

717745
private async Task StartReplLoop(CancellationToken cancellationToken)

0 commit comments

Comments
 (0)