ps/Modules/Alkami.PowerShell.Common/Public/Get-AlkamiManifestFilename.ps1

14 lines
397 B
PowerShell
Raw Permalink Normal View History

2023-05-30 22:51:22 -07:00
function Get-AlkamiManifestFilename {
<#
.SYNOPSIS
Get the name of the AlkamiManifest so we consistently consume it in case we want to change it.
#>
[CmdletBinding()]
[OutputType([System.String])]
[Obsolete("Usages of this file and surrounding files should be converted to use Alkami.PowerShell.Configuration\Get-PackageManifest")]
Param()
return "AlkamiManifest.xml";
}