|
10 | 10 |
|
11 | 11 | # Script module or binary module file associated with this manifest.
|
12 | 12 | RootModule = "Polaris.psm1"
|
13 |
| - |
| 13 | + |
14 | 14 | # Version number of this module.
|
15 | 15 | ModuleVersion = '0.2.0'
|
16 |
| - |
| 16 | + |
17 | 17 | # Supported PSEditions
|
18 | 18 | CompatiblePSEditions = @('Desktop', 'Core')
|
19 |
| - |
| 19 | + |
20 | 20 | # ID used to uniquely identify this module
|
21 | 21 | GUID = 'd9c86d71-cda6-431e-b297-34e0560f8e30'
|
22 |
| - |
| 22 | + |
23 | 23 | # Author of this module
|
24 | 24 | Author = 'Microsoft Corporation'
|
25 |
| - |
| 25 | + |
26 | 26 | # Company or vendor of this module
|
27 | 27 | CompanyName = 'Microsoft Corporation'
|
28 |
| - |
| 28 | + |
29 | 29 | # Copyright statement for this module
|
30 | 30 | Copyright = '© Microsoft Corporation. All rights reserved'
|
31 |
| - |
| 31 | + |
32 | 32 | # Description of the functionality provided by this module
|
33 | 33 | Description = 'A cross-platform, minimalist web framework for PowerShell'
|
34 |
| - |
| 34 | + |
35 | 35 | # Minimum version of the Windows PowerShell engine required by this module
|
36 | 36 | PowerShellVersion = '5.1'
|
37 |
| - |
| 37 | + |
38 | 38 | # Minimum version of the common language runtime (CLR) required by this module. This prerequisite is valid for the PowerShell Desktop edition only.
|
39 | 39 | # CLRVersion = ''
|
40 |
| - |
| 40 | + |
41 | 41 | # Processor architecture (None, X86, Amd64) required by this module
|
42 | 42 | # ProcessorArchitecture = ''
|
43 |
| - |
| 43 | + |
44 | 44 | # Modules that must be imported into the global environment prior to importing this module
|
45 | 45 | # RequiredModules = @()
|
46 |
| - |
| 46 | + |
47 | 47 | # Script files (.ps1) that are run in the caller's environment prior to importing this module.
|
48 | 48 | ScriptsToProcess = @(
|
49 | 49 | "Public\New-ScriptblockCallback.ps1",
|
|
53 | 53 | "lib\PolarisMiddleware.Class.ps1",
|
54 | 54 | "lib\Polaris.Class.ps1"
|
55 | 55 | )
|
56 |
| - |
| 56 | + |
57 | 57 | # Type files (.ps1xml) to be loaded when importing this module
|
58 | 58 | # TypesToProcess = @()
|
59 |
| - |
| 59 | + |
60 | 60 | # Format files (.ps1xml) to be loaded when importing this module
|
61 | 61 | # FormatsToProcess = @()
|
62 |
| - |
| 62 | + |
63 | 63 | # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess
|
64 | 64 | # NestedModules = @()
|
65 |
| - |
| 65 | + |
66 | 66 | # 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.
|
67 | 67 | FunctionsToExport = @(
|
68 | 68 | 'Get-Polaris'
|
|
83 | 83 | 'New-DirectoryBrowser'
|
84 | 84 | 'Start-Polaris'
|
85 | 85 | 'Stop-Polaris' )
|
86 |
| - |
| 86 | + |
87 | 87 | # 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.
|
88 | 88 | CmdletsToExport = @()
|
89 |
| - |
| 89 | + |
90 | 90 | # Variables to export from this module
|
91 | 91 | VariablesToExport = '*'
|
92 |
| - |
| 92 | + |
93 | 93 | # 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.
|
94 | 94 | AliasesToExport = '*'
|
95 |
| - |
| 95 | + |
96 | 96 | # List of all modules packaged with this module
|
97 | 97 | # ModuleList = @()
|
98 |
| - |
| 98 | + |
99 | 99 | # List of all files packaged with this module
|
100 | 100 | # FileList = @()
|
101 |
| - |
| 101 | + |
102 | 102 | # 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.
|
103 | 103 | PrivateData = @{
|
104 |
| - |
| 104 | + |
105 | 105 | PSData = @{
|
106 |
| - |
| 106 | + |
107 | 107 | # Tags applied to this module. These help with module discovery in online galleries.
|
108 | 108 | Tags = @('web','core','framework','REST')
|
109 |
| - |
| 109 | + |
110 | 110 | # A URL to the license for this module.
|
111 | 111 | LicenseUri = 'https://github.com/PowerShell/Polaris/blob/master/LICENSE.txt'
|
112 |
| - |
| 112 | + |
113 | 113 | # A URL to the main website for this project.
|
114 | 114 | ProjectUri = 'https://github.com/PowerShell/Polaris'
|
115 |
| - |
| 115 | + |
116 | 116 | # A URL to an icon representing this module.
|
117 | 117 | # IconUri = ''
|
118 |
| - |
| 118 | + |
119 | 119 | # ReleaseNotes of this module
|
120 | 120 | ReleaseNotes = @'
|
121 | 121 | # 0.2.0
|
|
124 | 124 | * HttpListener authentication support
|
125 | 125 | * misc bug fixes and improvements
|
126 | 126 | '@
|
127 |
| - |
| 127 | + |
128 | 128 | } # End of PSData hashtable
|
129 |
| - |
| 129 | + |
130 | 130 | } # End of PrivateData hashtable
|
131 |
| - |
| 131 | + |
132 | 132 | # HelpInfo URI of this module
|
133 | 133 | # HelpInfoURI = ''
|
134 |
| - |
| 134 | + |
135 | 135 | # Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix.
|
136 | 136 | # DefaultCommandPrefix = ''
|
137 |
| - |
| 137 | + |
138 | 138 | }
|
0 commit comments