NetExtender.psd1

@{
    ModuleVersion = '0.2.2'
    RootModule = '.\NetExtender.psm1'
    GUID = '11b9c86a-f266-423d-a888-b8d149417b4c'
    Author = 'Dailen Gunter'
    CompanyName = 'WideData Corporation, Inc.'
    Copyright = '2024'
    Description = 'PowerShell Wrapper and additional utilities for administration operations with NetExtender and specifically NECLI'
    PowerShellVersion = '5.1'
    CompatiblePSEditions = @('Desktop', 'Core')
    RequiredModules = @('Carbon','Carbon.Windows.Installer')
    FunctionsToExport = @(
        'Get-NetExtender',
        'Get-NetExtenderProfile',
        'Install-NetExtender',
        'Remove-NetExtenderProfile'
        )
    CmdletsToExport = @()
    VariablesToExport = @()
    AliasesToExport = @('Get-NEProfile', 'Update-NetExtender', 'Remove-NEProfile', 'Reset-NEProfiles', "Get-NetExtenderUpdate")
    PrivateData = @{
        PSData = @{
            Tags = @('widedata', 'SonicWall', 'NetExtender', 'NECLI', 'VPN', 'SSLVPN', 'SonicOS')
            # LicenseUri = 'your-license-uri-here'
            ProjectUri = 'https://github.com/DailenG/NetExtender/'
            IconUri = 'https://wdc.help/icons/powershell.png'
            # ReleaseNotes = 'your-release-notes-here'
            # External dependent modules of this module
            ExternalModuleDependencies = @("Carbon","Carbon.Windows.Installer")
        }
    }
}