CreateManifest.ps1

$moduleSettings = @{
    ModuleVersion = '1.0.0'
    Author = 'RAMI-BEN-TRAD'
    CompanyName = 'TGITS'
    Copyright = '(c) 2020 TGITS. All rights reserved.'
    Description = 'Clearing ACRs'
    PowerShellVersion = '5.1'
    ScriptsToProcess = @()
        FunctionsToExport = @(
            'Get-PSTSAzureSubscriptions',
            'Get-PSTSAcrBySubscription',
            'Get-PSTSReposBySubscription',
            'Get-PSTSRepoTags',
            'Delete-PSTSImageAcr',
            'ClearingAcr'
                    )
    Path = './/ClearingAcr.psd1'
    RootModule = './/ClearingAcr.psm1'
    VariablesToExport = '*'
}
New-ModuleManifest @moduleSettings