FastNativeLogger.psd1

#
# Module manifest for module 'FastNativeLogger'
#
# Generated by: kannis.wong
#
# Generated on: 3/3/2026
#

@{

# Script module or binary module file associated with this manifest.
RootModule          = 'FastNativeLogger.psm1'
ModuleVersion       = '1.0.0'
GUID                = 'c3b4dd0c-9210-4082-9d70-87acf0fa9666'
Author              = 'kannis.wong'
Copyright           = '(c) Kannis.Wong. All rights reserved.'
Description         = 'High-performance, buffered logging for PowerShell scripts.'
PowerShellVersion   = '5.1'

FunctionsToExport   = @(
    'Initialize-Logger',
    'Write-Log',
    'Clear-Logger',
    'Close-Logger'
)

CmdletsToExport     = @()
VariablesToExport   = '*'
AliasesToExport     = @()

# Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell.
PrivateData = @{
    PSData = @{
        # Tags applied to this module. These help with module discovery in online galleries.
        Tags = @(
            'log',
            'logging',
            'logger',
            'System',
            'Management',
            'Configuration',
            'HighPerformance'
        )
        # A URL to the license for this module.
        LicenseUri = 'https://github.com/Kannis-Wong/FastNativeLogger/blob/master/LICENSE'

        # A URL to the main website for this project.
        ProjectUri = 'https://github.com/Kannis-Wong/FastNativeLogger'

    }
}

HelpInfoURI = 'https://github.com/Kannis-Wong/FastNativeLogger'

}