Pansies.psd1

@{

# Script module or binary module file associated with this manifest.
RootModule = 'Pansies.psm1'

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

# Supported PSEditions
# CompatiblePSEditions = @()

# ID used to uniquely identify this module
GUID = '6c376de1-1baf-4d52-9666-d46f6933bc16'

# Author of this module
Author = 'Joel Bennett'

# Company or vendor of this module
CompanyName = 'HuddledMasses.org'

# Copyright statement for this module
Copyright = '(c) 2017 Joel Bennett. All rights reserved.'

# Description of the functionality provided by this module
Description = 'A PowerShell module for handling color and cursor positioning via ANSI escape sequences'

# Assemblies that must be loaded prior to importing this module
# RequiredAssemblies =

# Script files (.ps1) that are run in the caller's environment prior to importing this module.
# ScriptsToProcess = @()

# Type files (.ps1xml) to be loaded when importing this module
# TypesToProcess = @()

# Format files (.ps1xml) to be loaded when importing this module
FormatsToProcess = @("Pansies.format.ps1xml")

# Modules to import as nested modules of the module specified in RootModule/ModuleToProcess
NestedModules = if($PSEdition -eq "Core") { "lib\netstandard1.6\Pansies.dll" } else { "lib\net451\Pansies.dll" }

# 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-Gradient', 'Get-Complement'

# A default Prefix for for Cmdlets to export
# DefaultCommandPrefix = "Pansies"

# Cmdlets 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 cmdlets to export.
CmdletsToExport = 'New-Text', 'Write-Host'

# Variables to export from this module
# VariablesToExport = '*'

# 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 = 'Text'

# List of all files packaged with this module
# FileList = @()

# 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 = @("ANSI", "EscapeSequences", "VirtualTerminal", "Color")

        # A URL to the license for this module.
        LicenseUri = 'https://github.com/PoshCode/Pansies/blob/master/LICENSE'

        # A URL to the main website for this project.
        ProjectUri = 'https://github.com/PoshCode/Pansies'

        # A URL to an icon representing this module.
        IconUri = 'https://github.com/PoshCode/Pansies/blob/resources/Pansies_32.gif?raw=true'

        # ReleaseNotes of this module
        ReleaseNotes = '
        1.2.1: Fix cmdlet export so New-Text and Write-Host show back up
               Make EXTERNALHELP work for functions
               Provide help for Get-Complement
        1.2.0: Better support for using ConsoleColors
               Added Get-Complement to calculate the HSL complement or contrasting colors
               Fixed ConsolePalette so it reads the current console colors when possible
        1.1.0: Support for serialization by the Configuration module
               Fix output of "bright" color object in ConEmu (workaround ConEmu bug)
        1.0.0: Pre-release version with support for RGB colors
        '


    } # End of PSData hashtable

} # End of PrivateData hashtable

# HelpInfo URI of this module
# HelpInfoURI = ''

}