File tree Expand file tree Collapse file tree 2 files changed +12
-3
lines changed Expand file tree Collapse file tree 2 files changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -174,7 +174,10 @@ private static Command ConstructCommand()
174
174
175
175
private class ShowWorkloadsInfoAction : SynchronousCommandLineAction
176
176
{
177
- public override bool Terminating => true ;
177
+ public ShowWorkloadsInfoAction ( )
178
+ {
179
+ Terminating = true ;
180
+ }
178
181
179
182
public override int Invoke ( ParseResult parseResult )
180
183
{
@@ -186,7 +189,10 @@ public override int Invoke(ParseResult parseResult)
186
189
187
190
private class ShowWorkloadsVersionOption : SynchronousCommandLineAction
188
191
{
189
- public override bool Terminating => true ;
192
+ public ShowWorkloadsVersionOption ( )
193
+ {
194
+ Terminating = true ;
195
+ }
190
196
191
197
public override int Invoke ( ParseResult parseResult )
192
198
{
Original file line number Diff line number Diff line change @@ -427,7 +427,10 @@ public override void Write(HelpContext context)
427
427
428
428
private class PrintCliSchemaAction : SynchronousCommandLineAction
429
429
{
430
- public override bool Terminating => true ;
430
+ public PrintCliSchemaAction ( )
431
+ {
432
+ Terminating = true ;
433
+ }
431
434
432
435
public override int Invoke ( ParseResult parseResult )
433
436
{
You can’t perform that action at this time.
0 commit comments