File tree 4 files changed +7
-7
lines changed
src/ClassExplorer/Commands 4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -475,7 +475,7 @@ If specified any parameter that accepts wildcards will switch to matching regula
475
475
` ` ` yaml
476
476
Type: SwitchParameter
477
477
Parameter Sets: (All)
478
- Aliases: Regex
478
+ Aliases: Regex, re
479
479
480
480
Required: False
481
481
Position: Named
Original file line number Diff line number Diff line change @@ -158,7 +158,7 @@ Specifies a interface that the type must implement to match. This can also be a
158
158
` ` ` yaml
159
159
Type: ClassExplorer.ScriptBlockStringOrType
160
160
Parameter Sets: (All)
161
- Aliases: int
161
+ Aliases: ii, int
162
162
163
163
Required: False
164
164
Position: Named
@@ -174,7 +174,7 @@ Specifies a type that the type must inherit to match. This can also be a type si
174
174
` ` ` yaml
175
175
Type: ClassExplorer.ScriptBlockStringOrType
176
176
Parameter Sets: (All)
177
- Aliases: Base
177
+ Aliases: Base, it
178
178
179
179
Required: False
180
180
Position: Named
@@ -364,7 +364,7 @@ If specified all parameters that accept wildcards will match regular expressions
364
364
` ` ` yaml
365
365
Type: System.Management.Automation.SwitchParameter
366
366
Parameter Sets: (All)
367
- Aliases: Regex
367
+ Aliases: Regex, re
368
368
369
369
Required: False
370
370
Position: Named
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ public abstract class FindReflectionObjectCommandBase<TMemberType> : PSCmdlet
44
44
/// that support wildcards.
45
45
/// </summary>
46
46
[ Parameter ]
47
- [ Alias ( "Regex" ) ]
47
+ [ Alias ( "Regex" , "re" ) ]
48
48
public virtual SwitchParameter RegularExpression { get ; set ; }
49
49
50
50
/// <summary>
Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ public string? FullName
62
62
/// </summary>
63
63
[ Parameter ]
64
64
[ ValidateNotNull ]
65
- [ Alias ( "Base" ) ]
65
+ [ Alias ( "Base" , "it" ) ]
66
66
[ ArgumentCompleter ( typeof ( TypeFullNameArgumentCompleter ) ) ]
67
67
public ScriptBlockStringOrType InheritsType { get ; set ; } = null ! ;
68
68
@@ -72,7 +72,7 @@ public string? FullName
72
72
[ Parameter ]
73
73
[ ValidateNotNull ]
74
74
[ ArgumentCompleter ( typeof ( TypeFullNameArgumentCompleter ) ) ]
75
- [ Alias ( "int" ) ]
75
+ [ Alias ( "int" , "ii" ) ]
76
76
public ScriptBlockStringOrType ImplementsInterface { get ; set ; } = null ! ;
77
77
78
78
[ Parameter ]
You can’t perform that action at this time.
0 commit comments