TypeAccelerators.psd1

@{

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

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

# ID used to uniquely identify this module
GUID = '2b7d03e2-6200-464f-aa3e-161a42a205b8'

# Author of this module
Author = 'Chris Carter'

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

# Copyright statement for this module
Copyright = '(c) 2016 Chris Carter. All rights reserved.'

# Description of the functionality provided by this module
Description = 'The PowerShell Type Accelerators Module contains four script Cmdlets: Get-TypeAccelerator, Add-TypeAccelerator, Remove-TypeAccelerator, and Rename-TypeAccelerator with the aliases gta, ata, rta, and rnta respectively. These allow you to control the type accelerators in your PowerShell session by adding or modifying them to suit your needs.'

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

# Functions to export from this module
FunctionsToExport = @('Add-TypeAccelerator', 'Remove-TypeAccelerator', 'Get-TypeAccelerator', 'Rename-TypeAccelerator')

# Cmdlets to export from this module
CmdletsToExport = '*'

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

# Aliases to export from this module
AliasesToExport = @('gta','ata','rta','rnta')

#Format files to be loaded when importing this module
FormatsToProcess = '.\TypeAccelerators.format.ps1xml'

#Type files to be loaded when importing this module
TypesToProcess = '.\TypeAccelerators.types.ps1xml'

# 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 = @('accelerator','TypeAccelerators','PowerShellTypeAccelerators','AddTypeAccelerators','RemoveTypeAccelerators')

        # A URL to the license for this module.
        LicenseUri = 'http://creativecommons.org/licenses/by-sa/4.0/'

        # A URL to the main website for this project.
        ProjectUri = 'https://gallery.technet.microsoft.com/PowerShell-Type-Accelerator-17bcc574'

        # ReleaseNotes of this module
        ReleaseNotes = 'Added Conceptual Help file'

    } # End of PSData hashtable

} # End of PrivateData hashtable

# End of manifest

}