Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ This command gets the processes running on the local computer and sends them to
### Example 2: Save output to a variable, and then output a tree view

```PowerShell
PS C:\> ($A = Get-ChildItem -Path $pshome -Recurse) | sot
PS C:\> ($A = Get-ChildItem -Path $pshome -Recurse) | shot
```

This command saves its output in a variable and sends it to **Show-ObjectTree**.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ CmdletsToExport = @( 'Out-ConsoleGridView', 'Show-ObjectTree' )
VariablesToExport = '*'

# Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export.
AliasesToExport = @( 'ocgv', 'sot' )
AliasesToExport = @( 'ocgv', 'shot' )

# DSC resources to export from this module
# DscResourcesToExport = @()
Expand Down Expand Up @@ -151,7 +151,7 @@ If items are selected, then a filter is applied, items now hidden stay selected
* PSAnsiRenderingFileInfo causes display issues with Out-ConsoleGridView #159
* Removes building and distribution of Out-GridView and the other Avalonia-based components
* Remove ANSI escape sequences from property values #158

## v0.7.0

Upgraded to PowerShell 7.2 and .NET target framework `net60`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
namespace OutGridView.Cmdlet
{
[Cmdlet("Show", "ObjectTree")]
[Alias("sot")]
[Alias("shot")]
public class ShowObjectTreeCmdletCommand : PSCmdlet, IDisposable
{
#region Properties
Expand Down Expand Up @@ -51,7 +51,7 @@ public class ShowObjectTreeCmdletCommand : PSCmdlet, IDisposable
[Parameter(HelpMessage = "If specified no window frame, filter box, or status bar will be displayed in the GUI.")]
public SwitchParameter MinUI { set; get; }
/// <summary>
/// gets or sets the whether the Terminal.Gui System.Net.Console-based ConsoleDriver will be used instead of the
/// gets or sets the whether the Terminal.Gui System.Net.Console-based ConsoleDriver will be used instead of the
/// default platform-specific (Windows or Curses) ConsoleDriver.
/// </summary>
[Parameter(HelpMessage = "If specified the Terminal.Gui System.Net.Console-based ConsoleDriver (NetDriver) will be used.")]
Expand Down