AL/Get-IsALRepo.ps1
function Get-IsALRepo { Param( [Parameter(Mandatory=$false)] [string]$Path = (Get-Location) ) Test-Path (Join-Path $Path 'app.json') } Export-ModuleMember -Function Get-IsALRepo |
function Get-IsALRepo { Param( [Parameter(Mandatory=$false)] [string]$Path = (Get-Location) ) Test-Path (Join-Path $Path 'app.json') } Export-ModuleMember -Function Get-IsALRepo |