TM-SessionHistory.psd1

@{
# Script module or binary module file associated with this manifest.
RootModule = 'TM-SessionHistory.psm1'

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

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

# ID used to uniquely identify this module
GUID = '36bfd560-f6e5-4f85-84e8-edf1cb0e0250'

# Author of this module
Author = 'Taylor Marvin'

# Company or vendor of this module
CompanyName = 'N/A'

# Copyright statement for this module
Copyright = 'Taylor Marvin (2023)'

# Description of the functionality provided by this module
Description = 'Provides session history utility functionality to make it easier to pull command history for documentation purposes.'

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

# Modules that must be imported into the global environment prior to importing this module
RequiredModules = @(@{ModuleName='TM-ProfileUtility'; ModuleVersion='0.0.13'; GUID='82c4123f-77ae-497f-849c-a9a549d42984'})

# Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export.
FunctionsToExport = @('Get-SessionHistory', 'Remove-SessionHistory', 'Set-SessionHistory')

# Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export.
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 = @('Profile', 'Session', 'History')

        # A URL to the license for this module.
        LicenseUri = 'https://gist.github.com/tsmarvin/77350ac4ca11715b0e7b3d0fde6472e5#file-license'

        # A URL to the main website for this project.
        ProjectUri = 'https://gist.github.com/tsmarvin/77350ac4ca11715b0e7b3d0fde6472e5'

        # Prerelease string of this module
        # Prerelease = ''

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

}