File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -19,8 +19,6 @@ internal CommandLineSwitchesAccessor(CommandLineSwitches switches)
1919
2020 public bool ? Version => GetParameterlessSwitchValue ( ParameterlessSwitch . Version ) ;
2121
22- public bool ? NoLogo => GetParameterlessSwitchValue ( ParameterlessSwitch . NoLogo ) ;
23-
2422 public bool ? NoAutoResponse => GetParameterlessSwitchValue ( ParameterlessSwitch . NoAutoResponse ) ;
2523
2624 public bool ? NoConsoleLogger => GetParameterlessSwitchValue ( ParameterlessSwitch . NoConsoleLogger ) ;
@@ -156,6 +154,8 @@ internal CommandLineSwitchesAccessor(CommandLineSwitches switches)
156154
157155 public string [ ] ? MultiThreaded => GetParameterizedSwitchValue ( ParameterizedSwitch . MultiThreaded ) ;
158156
157+ public string [ ] ? NoLogo => GetParameterizedSwitchValue ( ParameterizedSwitch . NoLogo ) ;
158+
159159 private bool ? GetParameterlessSwitchValue ( ParameterlessSwitch switchType ) => switches . IsParameterlessSwitchSet ( switchType ) ? switches [ switchType ] : null ;
160160
161161 private string [ ] ? GetParameterizedSwitchValue ( ParameterizedSwitch switchType ) => switches . IsParameterizedSwitchSet ( switchType ) ? switches [ switchType ] : null ;
You can’t perform that action at this time.
0 commit comments