Private/Get-VersionNumberFromTimestamp.ps1

function Get-VersionNumberFromTimestamp{
    # Get the current timestamp in version format (e.g., "202409.13.12.45")
    $timestampVersion = Get-Date -Format "yyyyMM.dd.HH.mm"

    return $timestampVersion
}