IntuneBackup.psd1

@{
    ModuleVersion             = '1.0.2'
    PowerShellVersion         = '7.0'
    RootModule                = 'IntuneBackup.psm1'
    GUID                      = 'e6433f6f-73ce-4524-82cf-630de5efda40'
    Author                    = '@AndrewZtrhgf'
    Copyright                 = '(c) 2022 @AndrewZtrhgf. All rights reserved.'
    Description               = 'Backup Intune configurations to JSON files (simplified IntuneCD PowerShell port)'
    FunctionsToExport         = @('Start-IntuneBackup')
    VariablesToExport         = @()
    FormatsToProcess          = @()
    RequiredAssemblies        = @()
    PrivateData       = @{
        PSData = @{
            Tags         = @('Intune', 'Backup')
            ProjectUri   = 'https://github.com/ztrhgf/IntuneBackup'
            ReleaseNotes = '
            1.0.2
                - Sorted JSON properties for deterministic output and cleaner diffs.
                - Warning when throttled instead of verbose message.
            1.0.1
                - Modified throttle limit default to 10.
                - Fixed report build generation.
            1.0.0
                Initial release. Port of the official IntuneCD Python solution (https://github.com/almenscorner/intunecd)."
            '

        }
    }
}