File tree Expand file tree Collapse file tree 2 files changed +1
-8
lines changed Expand file tree Collapse file tree 2 files changed +1
-8
lines changed Original file line number Diff line number Diff line change @@ -33,10 +33,6 @@ public sealed class NewMarkdownModuleFileCommand : PSCmdlet
3333 [ Parameter ( ) ]
3434 public SwitchParameter Force { get ; set ; }
3535
36- [ Parameter ]
37- [ ValidateNotNullOrEmpty ]
38- public string HelpUri { get ; set ; } = string . Empty ;
39-
4036 [ Parameter ]
4137 [ ValidateNotNullOrEmpty ]
4238 public string HelpInfoUri { get ; set ; } = string . Empty ;
@@ -131,7 +127,7 @@ protected override void EndProcessing()
131127 foreach ( var cmdHelp in group )
132128 {
133129 string description = Constants . FillInDescription ;
134- if ( ! string . IsNullOrEmpty ( cmdHelp . Synopsis ) )
130+ if ( ! string . IsNullOrEmpty ( cmdHelp . Synopsis ) )
135131 {
136132 description = cmdHelp . Synopsis ;
137133 }
Original file line number Diff line number Diff line change @@ -39,9 +39,6 @@ public sealed class UpdateMarkdownModuleFileCommand : PSCmdlet
3939 [ Parameter ( ) ]
4040 public SwitchParameter Force { get ; set ; }
4141
42- [ Parameter ]
43- [ ValidateNotNullOrEmpty ]
44- public string HelpUri { get ; set ; } = string . Empty ;
4542
4643 [ Parameter ]
4744 [ ValidateNotNullOrEmpty ]
You can’t perform that action at this time.
0 commit comments