UsefulArgumentCompleters.psd1

@{
    RootModule             = "UsefulArgumentCompleters.psm1"
    ModuleVersion          = '1.0.5'
    CompatiblePSEditions   = @("Core", "Desktop")
    GUID                   = '689ec054-2cc8-4cf3-9a12-38fed35b659f'
    Author                 = 'MartinGC94'
    CompanyName            = 'Unknown'
    Copyright              = '(c) 2022 MartinGC94. All rights reserved.'
    Description            = 'Module with lots of argument completers for popular commands.'
    PowerShellVersion      = '5.1'
    FormatsToProcess       = @()
    FunctionsToExport      = @()
    CmdletsToExport        = @()
    VariablesToExport      = @()
    AliasesToExport        = @()
    DscResourcesToExport   = @()
    FileList               = @('PSGallery.csv','UsefulArgumentCompleters.psd1','UsefulArgumentCompleters.psm1')
    PrivateData            = @{
        PSData = @{
             Tags         = @("Argument", "Completer", "Completion", "TabCompletion")
             ProjectUri   = 'https://github.com/MartinGC94/UsefulArgumentCompleters'
             ReleaseNotes = @'
1.0.5:
    Fix RemotePort parameter completion for Get-NetTCPConnection
1.0.4:
    Add process, port and address completers for Get-NetTCPConnection
1.0.3:
    Add Verb completer for Start-Process
1.0.2:
    Add cultureinfo and appx argument completers
1.0.1:
    Fix issue when commands used in the cache were unavailable, or otherwise failed.
1.0:
    Initial release with over 30 completers!
'@

        }
    }
}