|
1 | | -@{ |
2 | | -RootModule = 'PSSwagger.psm1' |
3 | | -ModuleVersion = '0.2.0' |
4 | | -PowerShellVersion = '5.1' |
5 | | -GUID = '6c925abf-49bc-49f4-8a47-12b95c9a8b37' |
6 | | -Author = 'Microsoft Corporation' |
7 | | -CompanyName = 'Microsoft Corporation' |
8 | | -Copyright = '(c) Microsoft Corporation. All rights reserved.' |
9 | | -Description = 'PowerShell module with commands for generating the PowerShell Cmdlets using Swagger based specifications.' |
10 | | -FunctionsToExport = @( |
11 | | - 'New-PSSwaggerModule', |
12 | | - 'New-PSSwaggerMetadataFile' |
13 | | - ) |
14 | | -CmdletsToExport = '' |
15 | | -VariablesToExport = '' |
16 | | -AliasesToExport = '' |
17 | | - |
18 | | -NestedModules = @( |
19 | | - 'PSSwaggerMetadata.psm1', |
20 | | - 'PSSwaggerUtility' |
21 | | - ) |
22 | | - |
23 | | -FileList = @( |
24 | | - 'Definitions.psm1', |
25 | | - 'Generated.Resources.psd', |
26 | | - 'Paths.psm1', |
27 | | - 'PSSwagger.Constants.ps1', |
28 | | - 'PSSwagger.psd1', |
29 | | - 'PSSwagger.psm1', |
30 | | - 'PSSwagger.Resources.psd1', |
31 | | - 'PSSwaggerMetadata.psm1', |
32 | | - 'SwaggerUtils.psm1', |
33 | | - 'Utilities.psm1', |
34 | | - 'Trie.ps1' |
35 | | - ) |
36 | | - |
37 | | -PrivateData = @{ |
38 | | - PSData = @{ |
39 | | - Tags = @('Azure', |
40 | | - 'Swagger', |
41 | | - 'PSEdition_Desktop') |
42 | | - ProjectUri = 'https://github.com/PowerShell/PSSwagger' |
43 | | - LicenseUri = 'https://github.com/PowerShell/PSSwagger/blob/master/LICENSE' |
44 | | - ReleaseNotes = @' |
45 | | -- Initial development release |
46 | | -'@ |
47 | | - } |
48 | | -} |
49 | | - |
50 | | -} |
51 | | - |
| 1 | +@{ |
| 2 | +RootModule = 'PSSwagger.psm1' |
| 3 | +ModuleVersion = '0.2.0' |
| 4 | +PowerShellVersion = '5.1' |
| 5 | +GUID = '6c925abf-49bc-49f4-8a47-12b95c9a8b37' |
| 6 | +Author = 'Microsoft Corporation' |
| 7 | +CompanyName = 'Microsoft Corporation' |
| 8 | +Copyright = '(c) Microsoft Corporation. All rights reserved.' |
| 9 | +Description = 'PowerShell module with commands for generating the PowerShell Cmdlets using Swagger based specifications.' |
| 10 | +FunctionsToExport = @( |
| 11 | + 'New-PSSwaggerModule', |
| 12 | + 'New-PSSwaggerMetadataFile' |
| 13 | + ) |
| 14 | +CmdletsToExport = '' |
| 15 | +VariablesToExport = '' |
| 16 | +AliasesToExport = '' |
| 17 | + |
| 18 | +NestedModules = @( |
| 19 | + 'PSSwaggerMetadata.psm1', |
| 20 | + 'PSSwaggerUtility' |
| 21 | + ) |
| 22 | + |
| 23 | +FileList = @( |
| 24 | + 'Definitions.psm1', |
| 25 | + 'Generated.Resources.psd1', |
| 26 | + 'Paths.psm1', |
| 27 | + 'PSSwagger.Constants.ps1', |
| 28 | + 'PSSwagger.psd1', |
| 29 | + 'PSSwagger.psm1', |
| 30 | + 'PSSwagger.Resources.psd1', |
| 31 | + 'PSSwaggerMetadata.psm1', |
| 32 | + 'SwaggerUtils.psm1', |
| 33 | + 'Utilities.psm1', |
| 34 | + 'Trie.ps1' |
| 35 | + ) |
| 36 | + |
| 37 | +PrivateData = @{ |
| 38 | + PSData = @{ |
| 39 | + Tags = @('Azure', |
| 40 | + 'Swagger', |
| 41 | + 'PSEdition_Desktop') |
| 42 | + ProjectUri = 'https://github.com/PowerShell/PSSwagger' |
| 43 | + LicenseUri = 'https://github.com/PowerShell/PSSwagger/blob/master/LICENSE' |
| 44 | + ReleaseNotes = @' |
| 45 | +- Initial development release |
| 46 | +'@ |
| 47 | + } |
| 48 | +} |
| 49 | + |
| 50 | +} |
| 51 | + |
0 commit comments