IPv4Range.psd1
@{ RootModule = 'IPv4Range.psm1' ModuleVersion = '1.1' GUID = '83cdbab2-3204-4e20-9f9c-5d528b1d9f1e' Author = 'David CLEMENT' CompanyName = 'Dawan' Copyright = '(c) 2022 David CLEMENT @ dawan.fr' Description = @' Returns array of IP v4 address using mask CIDR or decimal. /!\ Not maintained anymore. Merged into module Routines https://www.powershellgallery.com/packages/routines/ '@ # PowerShellVersion = '' # PowerShellHostName = '' # PowerShellHostVersion = '' # DotNetFrameworkVersion = '' # CLRVersion = '' # ProcessorArchitecture = '' # RequiredModules = @() # RequiredAssemblies = @() # ScriptsToProcess = @() # TypesToProcess = @() # FormatsToProcess = @() # NestedModules = @() FunctionsToExport = 'Get-IPv4Range','Get-IPv4Info' CmdletsToExport = '*' VariablesToExport = '*' AliasesToExport = 'gir' # DscResourcesToExport = @() # ModuleList = @() FileList = @('IPv4Range.psd1','IPv4Range.psm1') PrivateData = @{ PSData = @{ Tags = 'System','Network','IP' LicenseUri = 'http://www.wtfpl.net/' ProjectUri = 'https://www.dawan.fr' IconUri = 'https://www.dawan.fr/build/images/dawan-logo.png' ReleaseNotes = 'Merged into routines module' # ExternalModuleDependencies = '' } # End of PSData hashtable } # End of PrivateData hashtable # HelpInfoURI = '' # DefaultCommandPrefix = '' } |