Skip to content

Commit ee84e8a

Browse files
committed
Reverted cmdlet to ConsoleGridView
The `Cmdlet` attribute for the `OutConsoleGridViewCmdletCommand` class was updated to rename the cmdlet from `Out-ConsoleGridView` to `ConsoleGridView`. This change simplifies the cmdlet name and may align with a new naming convention. The alias `[Alias("ocgv")]` remains unchanged, ensuring backward compatibility for users familiar with the shorthand.
1 parent 9f4bc39 commit ee84e8a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Microsoft.PowerShell.ConsoleGuiTools/OutConsoleGridviewCmdletCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ namespace Microsoft.PowerShell.ConsoleGuiTools;
1414
/// Sends output to an interactive table in a separate console window. This class is invoked by PowerShell when the
1515
/// Out-ConsoleGridView cmdlet is called.
1616
/// </summary>
17-
[Cmdlet(VerbsData.Out, "OutConsoleGridView")]
17+
[Cmdlet(VerbsData.Out, "ConsoleGridView")]
1818
[Alias("ocgv")]
1919
public class OutConsoleGridViewCmdletCommand : PSCmdlet, IDisposable
2020
{

0 commit comments

Comments
 (0)