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"; }