|
| 1 | +@{ |
| 2 | + |
| 3 | +# Script module or binary module file associated with this manifest. |
| 4 | +RootModule = 'PSReadLine.psm1' |
| 5 | + |
| 6 | +# Version number of this module. |
| 7 | +ModuleVersion = '0.0.0.0' |
| 8 | + |
| 9 | +# ID used to uniquely identify this module |
| 10 | +GUID = '5714753b-2afd-4492-a5fd-01d9e2cff8b5' |
| 11 | + |
| 12 | +# Author of this module |
| 13 | +Author = 'Jason Shirk' |
| 14 | + |
| 15 | +# Copyright statement for this module |
| 16 | +Copyright = '(c) 2013. All rights reserved.' |
| 17 | + |
| 18 | +# Description of the functionality provided by this module |
| 19 | +Description = 'Great command line editing in the PowerShell console host' |
| 20 | + |
| 21 | +# Minimum version of the Windows PowerShell engine required by this module |
| 22 | +PowerShellVersion = '3.0' |
| 23 | + |
| 24 | +# Name of the Windows PowerShell host required by this module |
| 25 | +PowerShellHostName = 'ConsoleHost' |
| 26 | + |
| 27 | +# Minimum version of the Windows PowerShell host required by this module |
| 28 | +# PowerShellHostVersion = '' |
| 29 | + |
| 30 | +# Minimum version of the .NET Framework required by this module |
| 31 | +DotNetFrameworkVersion = '4.0' |
| 32 | + |
| 33 | +# Minimum version of the common language runtime (CLR) required by this module |
| 34 | +CLRVersion = '4.0' |
| 35 | + |
| 36 | +# Type files (.ps1xml) to be loaded when importing this module |
| 37 | +# TypesToProcess = @() |
| 38 | + |
| 39 | +# Format files (.ps1xml) to be loaded when importing this module |
| 40 | +FormatsToProcess = @('PSReadLine.format.ps1xml') |
| 41 | + |
| 42 | +# Modules to import as nested modules of the module specified in RootModule/ModuleToProcess |
| 43 | +NestedModules = @("PSReadLine.dll") |
| 44 | + |
| 45 | +# Functions to export from this module |
| 46 | +FunctionsToExport = '*' |
| 47 | + |
| 48 | +# Cmdlets to export from this module |
| 49 | +CmdletsToExport = '*' |
| 50 | + |
| 51 | +# Aliases to export from this module |
| 52 | +AliasesToExport = '*' |
| 53 | + |
| 54 | +# List of all modules packaged with this module. |
| 55 | +# ModuleList = @() |
| 56 | + |
| 57 | +# List of all files packaged with this module |
| 58 | +# FileList = @() |
| 59 | + |
| 60 | +# Private data to pass to the module specified in RootModule/ModuleToProcess |
| 61 | +# PrivateData = '' |
| 62 | + |
| 63 | +# HelpInfo URI of this module |
| 64 | +# HelpInfoURI = '' |
| 65 | + |
| 66 | +} |
| 67 | + |
0 commit comments