Action.Logging.psd1

# ========================================
# Action.Logging Module Manifest
# ========================================

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

    # Version number of this module.
    ModuleVersion = '1.2.1'

    # Supported PSEditions
    CompatiblePSEditions = @('Desktop', 'Core')

    # ID used to uniquely identify this module
    GUID = '5b14a111-507a-4af6-bce7-454c74484086'

    # Author of this module
    Author = 'Gonzalo More'

    # Company or vendor of this module
    CompanyName = 'Unknown'

    # Copyright statement for this module
    Copyright = '(c) 2025 Gonzalo More. Licensed under MIT License.'

    # Description of the functionality provided by this module
    Description = 'Enhanced PowerShell logging module with async support. Provides severity-based logging with automatic file management, color-coded console output, and high-performance asynchronous logging capabilities for PowerShell scripts and automation.'

    # Minimum version of the PowerShell engine required by this module
    PowerShellVersion = '5.1'

    # Functions to export from this module, for best performance, do not use wildcards
    FunctionsToExport = @('Write-EnhancedLog', 'Clear-OldLog', 'Start-AsyncLogger', 'Stop-AsyncLogger', 'Write-EnhancedLogAsync', 'Set-LoggingConsoleOutput', 'Set-LogRetention')

    # Cmdlets to export from this module, for best performance, do not use wildcards
    CmdletsToExport = @()

    # Variables to export from this module
    VariablesToExport = @()

    # Aliases to export from this module, for best performance, do not use wildcards
    AliasesToExport = @()

    # Private data to pass to the module specified in RootModule/ModuleToProcess
    PrivateData = @{
        PSData = @{
            # Tags applied to this module
            Tags = @('Logging', 'PowerShell', 'Automation', 'Async', 'Console', 'FileManagement')

            # Release notes of this module
            ReleaseNotes = 'Version 1.2.1: Implemented clean PowerShell Gallery package standards. Optimized publication process to include only essential files (.psd1, .psm1, README.md, LICENSE). Enhanced documentation with comprehensive feature overview and performance metrics.'

            # Prerelease string of this module
            # Prerelease = ''

            # Flag to indicate whether the module requires explicit user acceptance for install/update/save
            RequireLicenseAcceptance = $false

            # External dependent modules of this module
            # ExternalModuleDependencies = @()
        }
    }

    # HelpInfo URI of this module
    # HelpInfoURI = ''

    # Default prefix for commands exported from this module
    # DefaultCommandPrefix = ''
}