Types/OpenPackage/get_Underscore.ps1
|
<# .SYNOPSIS Gets package underscore files .DESCRIPTION Gets underscore files defined in a package. These are any files that contain an underscore `_` in their path. This returns a series of dictionaries containing the contents of the package #> param() return $this.GetTree("/_") |