FileSystemTools/Get-ITIAppManifestFile.ps1
function Get-ITIAppManifestFile { param ( [Parameter(Mandatory=$true)] [string] $Path, [int] $Depth = 3 ) $appJsonFiles = Get-ChildItem -Path $Path -Filter 'app.json' -Recurse -Depth $Depth -Exclude 'Scripts' return $appJsonFiles } Export-ModuleMember -Function Get-ITIAppManifestFile |