PSReadline.psd1

@{

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

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

# ID used to uniquely identify this module
GUID = '5714753b-2afd-4492-a5fd-01d9e2cff8b5'

# Author of this module
Author = 'Jason Shirk'

# Copyright statement for this module
Copyright = '(c) 2013. All rights reserved.'

# Description of the functionality provided by this module
Description = 'Great command line editing in the PowerShell console host'

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

# Name of the Windows PowerShell host required by this module
# PowerShellHostName = 'ConsoleHost'

# Minimum version of the Windows PowerShell host required by this module
# PowerShellHostVersion = ''

# Minimum version of the .NET Framework required by this module
DotNetFrameworkVersion = '4.0'

# Minimum version of the common language runtime (CLR) required by this module
CLRVersion = '4.0'

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

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

# Modules to import as nested modules of the module specified in RootModule/ModuleToProcess
NestedModules = @("PSReadLine.dll")

# Functions to export from this module
FunctionsToExport = '*'

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

# Aliases to export from this module
AliasesToExport = '*'

# List of all modules packaged with this module.
# ModuleList = @()

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

# Private data to pass to the module specified in RootModule/ModuleToProcess
# PrivateData = ''

# HelpInfo URI of this module
# HelpInfoURI = ''

}