IntunePolicyExplorer.psd1

@{
    RootModule        = 'IntunePolicyExplorer.psm1'
    ModuleVersion     = '1.0.0'
    GUID              = 'a8f3c2e1-9b4d-4a6f-8e2c-1d5b7f9a3e6c'
    Author            = 'Engin Soysal'
    CompanyName       = 'ProSysTech'
    Copyright         = '(c) 2026 ProSysTech. All rights reserved.'
    Description       = 'Graphical Intune Policy Explorer - browse, search, and export Microsoft Intune policies via Microsoft Graph.'
    PowerShellVersion = '5.1'
    DotNetFrameworkVersion = '4.7.2'
    CompatiblePSEditions   = @('Desktop')

    FunctionsToExport = @('Show-IntunePoliciesGUI')
    CmdletsToExport   = @()
    VariablesToExport = @()
    AliasesToExport   = @()

    PrivateData = @{
        PSData = @{
            Tags         = @('Intune', 'MicrosoftGraph', 'Policy', 'GUI', 'DeviceManagement', 'EndpointManager', 'Export')
            LicenseUri   = 'https://opensource.org/licenses/MIT'
            ReleaseNotes = 'Initial release: WPF GUI for Intune policy discovery, settings view, and JSON/CSV/HTML export.'
            Prerelease   = ''
        }
    }
}