IntuneOperator.psd1

@{
    RootModule            = 'IntuneOperator.psm1'
    ModuleVersion         = '0.0.1'
    CompatiblePSEditions  = @(
        'Core'
        'Desktop'
    )
    GUID                  = '641ef5b3-0972-4376-96aa-88bc07018354'
    Author                = 'Frederik Hjorslev Nylander'
    CompanyName           = 'hjorslev'
    Copyright             = '(c) 2026 Frederik Hjorslev Nylander. All rights reserved.'
    Description           = 'A PowerShell module for managing and enhancing Microsoft Intune.'
    PowerShellVersion     = '5.1'
    ProcessorArchitecture = 'None'
    TypesToProcess        = @()
    FormatsToProcess      = @()
    FunctionsToExport     = @(
        'Get-IntuneDeviceLogin'
    )
    CmdletsToExport       = @()
    VariablesToExport     = @()
    AliasesToExport       = @()
    ModuleList            = @()
    FileList              = @(
        'IntuneOperator.psm1'
        'README.md'
    )
    PrivateData           = @{
        PSData = @{
            Tags       = @(
                'Linux'
                'MacOS'
                'PSEdition_Core'
                'PSEdition_Desktop'
                'Windows'
            )
            LicenseUri = 'https://github.com/hjorslev/IntuneOperator/blob/main/LICENSE'
            ProjectUri = 'https://github.com/hjorslev/IntuneOperator'
            IconUri    = 'https://raw.githubusercontent.com/hjorslev/IntuneOperator/main/icon/icon.png'
            Prerelease = 'initial004'
        }
    }
}