NetDiagTools.psd1

@{
    # Script module or binary module file associated with this manifest.
    RootModule = 'NetDiagTools.psm1'

    ModuleVersion = '1.0.0'

    GUID = 'd3b02e0e-91ab-4c3a-a3d7-8c4f77e4b202'

    Author = 'Ashish Arya'

    Description = 'A PowerShell module for basic network diagnostics'

    PowerShellVersion = '5.1'

    FunctionsToExport = @(
        'Get-IPConfiguration',
        'Test-NetworkLatency',
        'Get-OpenPorts'
    )

    CmdletsToExport = @()
    VariablesToExport = '*'
    AliasesToExport = '*'

    PrivateData = @{}

    # Other metadata (optional)
    CompanyName = 'YourCompany'
    Copyright = '(c) 2025 YourName. All rights reserved.'
}