Net.psd1

@{
    RootModule            = 'Net.psm1'
    ModuleVersion         = '1.0.0'
    CompatiblePSEditions  = @(
        'Core'
        'Desktop'
    )
    GUID                  = 'b3974106-819b-426c-addb-2b08652ee1c1'
    Author                = 'PSModule'
    CompanyName           = 'PSModule'
    Copyright             = '(c) 2025 PSModule. All rights reserved.'
    Description           = 'A PowerShell module to bring network functions to PowerShell'
    PowerShellVersion     = '5.1'
    ProcessorArchitecture = 'None'
    TypesToProcess        = @(
        'types/IPConfig.Types.ps1xml'
    )
    FormatsToProcess      = @(
        'formats/IPConfig.Format.ps1xml'
    )
    FunctionsToExport     = @(
        'Get-NetIPConfiguration'
    )
    CmdletsToExport       = @()
    VariablesToExport     = @()
    AliasesToExport       = @(
        'IPConfig'
    )
    ModuleList            = @()
    FileList              = @(
        'formats/IPConfig.Format.ps1xml'
        'Net.psm1'
        'types/IPConfig.Types.ps1xml'
    )
    PrivateData           = @{
        PSData = @{
            Tags       = @(
                'Linux'
                'MacOS'
                'PSEdition_Core'
                'PSEdition_Desktop'
                'Windows'
            )
            LicenseUri = 'https://github.com/PSModule/Net/blob/main/LICENSE'
            ProjectUri = 'https://github.com/PSModule/Net'
            IconUri    = 'https://raw.githubusercontent.com/PSModule/Net/main/icon/icon.png'
        }
    }
}