@@ -33,15 +33,15 @@ internal class AddProductSettings : AddSettings
3333
3434 [ Description ( "A Git repository url that will be used for the project template." ) ]
3535 [ CommandOption ( "-t|--template-url" ) ]
36- public string ? Template { get ; set ; }
36+ public new string ? Template { get ; set ; }
3737
3838 [ Description ( "Branch to use with the template repository." ) ]
3939 [ CommandOption ( "-b|--branch" ) ]
40- public string ? Branch { get ; set ; }
40+ public new string ? Branch { get ; set ; }
4141
4242 [ Description ( "Update the template repository." ) ]
4343 [ CommandOption ( "--pull" ) , DefaultValue ( false ) ]
44- public bool Pull { get ; set ; }
44+ public new bool Pull { get ; set ; }
4545 }
4646
4747 public override int Execute ( [ NotNull ] CommandContext context , [ NotNull ] AddProductSettings settings )
@@ -70,15 +70,15 @@ internal class AddStepSettings : AddSettings
7070
7171 [ Description ( "A Git repository url that will be used for the project template." ) ]
7272 [ CommandOption ( "-t|--template-url" ) ]
73- public string ? Template { get ; set ; }
73+ public new string ? Template { get ; set ; }
7474
7575 [ Description ( "Branch to use with the template repository." ) ]
7676 [ CommandOption ( "-b|--branch" ) ]
77- public string ? Branch { get ; set ; }
77+ public new string ? Branch { get ; set ; }
7878
7979 [ Description ( "Update the template repository." ) ]
8080 [ CommandOption ( "--pull" ) , DefaultValue ( false ) ]
81- public bool Pull { get ; set ; }
81+ public new bool Pull { get ; set ; }
8282 }
8383
8484 public override int Execute ( [ NotNull ] CommandContext context , [ NotNull ] AddStepSettings settings )
@@ -107,15 +107,15 @@ internal class AddModuleSettings : AddSettings
107107
108108 [ Description ( "A Git repository url that will be used for the project template." ) ]
109109 [ CommandOption ( "-t|--template-url" ) ]
110- public string ? Template { get ; set ; }
110+ public new string ? Template { get ; set ; }
111111
112112 [ Description ( "Branch to use with the template repository." ) ]
113113 [ CommandOption ( "-b|--branch" ) ]
114- public string ? Branch { get ; set ; }
114+ public new string ? Branch { get ; set ; }
115115
116116 [ Description ( "Update the template repository." ) ]
117117 [ CommandOption ( "--pull" ) , DefaultValue ( false ) ]
118- public bool Pull { get ; set ; }
118+ public new bool Pull { get ; set ; }
119119 }
120120
121121 public override int Execute ( [ NotNull ] CommandContext context , [ NotNull ] AddModuleSettings settings )
@@ -144,15 +144,15 @@ internal class AddResourcesSettings : AddSettings
144144
145145 [ Description ( "A Git repository url that will be used for the project template." ) ]
146146 [ CommandOption ( "-t|--template-url" ) ]
147- public string ? Template { get ; set ; }
147+ public new string ? Template { get ; set ; }
148148
149149 [ Description ( "Branch to use with the template repository." ) ]
150150 [ CommandOption ( "-b|--branch" ) ]
151- public string ? Branch { get ; set ; }
151+ public new string ? Branch { get ; set ; }
152152
153153 [ Description ( "Update the template repository." ) ]
154154 [ CommandOption ( "--pull" ) , DefaultValue ( false ) ]
155- public bool Pull { get ; set ; }
155+ public new bool Pull { get ; set ; }
156156 }
157157
158158 public override int Execute ( [ NotNull ] CommandContext context , [ NotNull ] AddResourcesSettings settings )
@@ -189,15 +189,15 @@ internal class AddStatesSettings : AddSettings
189189
190190 [ Description ( "A Git repository url that will be used for the project template." ) ]
191191 [ CommandOption ( "-t|--template-url" ) ]
192- public string ? Template { get ; set ; }
192+ public new string ? Template { get ; set ; }
193193
194194 [ Description ( "Branch to use with the template repository." ) ]
195195 [ CommandOption ( "-b|--branch" ) ]
196- public string ? Branch { get ; set ; }
196+ public new string ? Branch { get ; set ; }
197197
198198 [ Description ( "Update the template repository." ) ]
199199 [ CommandOption ( "--pull" ) , DefaultValue ( false ) ]
200- public bool Pull { get ; set ; }
200+ public new bool Pull { get ; set ; }
201201 }
202202
203203 public override int Execute ( [ NotNull ] CommandContext context , [ NotNull ] AddStatesSettings settings )
0 commit comments