@@ -85,12 +85,18 @@ public class ConsoleColorProxy
85
85
{
86
86
private EditorServicesPSHostUserInterface _hostUserInterface ;
87
87
88
+ /// <summary>
89
+ ///
90
+ /// </summary>
88
91
public ConsoleColorProxy ( EditorServicesPSHostUserInterface hostUserInterface )
89
92
{
90
93
if ( hostUserInterface == null ) throw new ArgumentNullException ( "hostUserInterface" ) ;
91
94
_hostUserInterface = hostUserInterface ;
92
95
}
93
96
97
+ /// <summary>
98
+ ///
99
+ /// </summary>
94
100
public ConsoleColor ErrorForegroundColor
95
101
{
96
102
[ SuppressMessage ( "Microsoft.Performance" , "CA1811:AvoidUncalledPrivateCode" ) ]
@@ -101,6 +107,9 @@ public ConsoleColor ErrorForegroundColor
101
107
{ _hostUserInterface . ErrorForegroundColor = value ; }
102
108
}
103
109
110
+ /// <summary>
111
+ ///
112
+ /// </summary>
104
113
public ConsoleColor ErrorBackgroundColor
105
114
{
106
115
[ SuppressMessage ( "Microsoft.Performance" , "CA1811:AvoidUncalledPrivateCode" ) ]
@@ -111,6 +120,9 @@ public ConsoleColor ErrorBackgroundColor
111
120
{ _hostUserInterface . ErrorBackgroundColor = value ; }
112
121
}
113
122
123
+ /// <summary>
124
+ ///
125
+ /// </summary>
114
126
public ConsoleColor WarningForegroundColor
115
127
{
116
128
[ SuppressMessage ( "Microsoft.Performance" , "CA1811:AvoidUncalledPrivateCode" ) ]
@@ -121,6 +133,9 @@ public ConsoleColor WarningForegroundColor
121
133
{ _hostUserInterface . WarningForegroundColor = value ; }
122
134
}
123
135
136
+ /// <summary>
137
+ ///
138
+ /// </summary>
124
139
public ConsoleColor WarningBackgroundColor
125
140
{
126
141
[ SuppressMessage ( "Microsoft.Performance" , "CA1811:AvoidUncalledPrivateCode" ) ]
@@ -131,6 +146,9 @@ public ConsoleColor WarningBackgroundColor
131
146
{ _hostUserInterface . WarningBackgroundColor = value ; }
132
147
}
133
148
149
+ /// <summary>
150
+ ///
151
+ /// </summary>
134
152
public ConsoleColor DebugForegroundColor
135
153
{
136
154
[ SuppressMessage ( "Microsoft.Performance" , "CA1811:AvoidUncalledPrivateCode" ) ]
@@ -141,6 +159,9 @@ public ConsoleColor DebugForegroundColor
141
159
{ _hostUserInterface . DebugForegroundColor = value ; }
142
160
}
143
161
162
+ /// <summary>
163
+ ///
164
+ /// </summary>
144
165
public ConsoleColor DebugBackgroundColor
145
166
{
146
167
[ SuppressMessage ( "Microsoft.Performance" , "CA1811:AvoidUncalledPrivateCode" ) ]
@@ -151,6 +172,9 @@ public ConsoleColor DebugBackgroundColor
151
172
{ _hostUserInterface . DebugBackgroundColor = value ; }
152
173
}
153
174
175
+ /// <summary>
176
+ ///
177
+ /// </summary>
154
178
public ConsoleColor VerboseForegroundColor
155
179
{
156
180
[ SuppressMessage ( "Microsoft.Performance" , "CA1811:AvoidUncalledPrivateCode" ) ]
@@ -161,6 +185,9 @@ public ConsoleColor VerboseForegroundColor
161
185
{ _hostUserInterface . VerboseForegroundColor = value ; }
162
186
}
163
187
188
+ /// <summary>
189
+ ///
190
+ /// </summary>
164
191
public ConsoleColor VerboseBackgroundColor
165
192
{
166
193
[ SuppressMessage ( "Microsoft.Performance" , "CA1811:AvoidUncalledPrivateCode" ) ]
@@ -171,6 +198,9 @@ public ConsoleColor VerboseBackgroundColor
171
198
{ _hostUserInterface . VerboseBackgroundColor = value ; }
172
199
}
173
200
201
+ /// <summary>
202
+ ///
203
+ /// </summary>
174
204
public ConsoleColor ProgressForegroundColor
175
205
{
176
206
[ SuppressMessage ( "Microsoft.Performance" , "CA1811:AvoidUncalledPrivateCode" ) ]
@@ -181,6 +211,9 @@ public ConsoleColor ProgressForegroundColor
181
211
{ _hostUserInterface . ProgressForegroundColor = value ; }
182
212
}
183
213
214
+ /// <summary>
215
+ ///
216
+ /// </summary>
184
217
public ConsoleColor ProgressBackgroundColor
185
218
{
186
219
[ SuppressMessage ( "Microsoft.Performance" , "CA1811:AvoidUncalledPrivateCode" ) ]
0 commit comments