|
1 | 1 | @{
|
2 |
| - |
3 |
| -# Script module or binary module file associated with this manifest. |
4 | 2 | 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 |
| 3 | +NestedModules = @("Microsoft.PowerShell.PSReadLine.dll") |
| 4 | +ModuleVersion = '1.1' |
10 | 5 | 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 |
| 6 | +Author = 'Microsoft Corporation' |
| 7 | +CompanyName = 'Microsoft Corporation' |
| 8 | +Copyright = '(c) Microsoft Corporation. All rights reserved.' |
19 | 9 | Description = 'Great command line editing in the PowerShell console host'
|
20 |
| - |
21 |
| -# Minimum version of the Windows PowerShell engine required by this module |
22 | 10 | 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 | 11 | DotNetFrameworkVersion = '4.0'
|
32 |
| - |
33 |
| -# Minimum version of the common language runtime (CLR) required by this module |
34 | 12 | 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 | 13 | 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 |
| - |
| 14 | +FunctionsToExport = 'PSConsoleHostReadline' |
| 15 | +CmdletsToExport = 'Get-PSReadlineKeyHandler','Set-PSReadlineKeyHandler','Remove-PSReadlineKeyHandler', |
| 16 | + 'Get-PSReadlineOption','Set-PSReadlineOption' |
| 17 | +HelpInfoURI = 'http://go.microsoft.com/fwlink/?LinkId=528806' |
66 | 18 | }
|
67 |
| - |
0 commit comments