|
1 | 1 | @{ |
2 | | -RootModule = 'PSSwagger.psm1' |
3 | | -ModuleVersion = '0.3.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 = @' |
| 2 | + RootModule = 'PSSwagger.psm1' |
| 3 | + ModuleVersion = '0.3.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 = @' |
10 | 10 | The PowerShell cmdlet generator from OpenAPI (f.k.a Swagger) specification. |
11 | 11 | Please refer to https://github.com/PowerShell/PSSwagger/blob/developer/README.md for more details. |
12 | 12 | '@ |
13 | | -FunctionsToExport = @( |
14 | | - 'New-PSSwaggerModule', |
15 | | - 'New-PSSwaggerMetadataFile' |
16 | | - ) |
17 | | -CmdletsToExport = '' |
18 | | -VariablesToExport = '' |
19 | | -AliasesToExport = '' |
| 13 | + FunctionsToExport = @( |
| 14 | + 'New-PSSwaggerModule', |
| 15 | + 'New-PSSwaggerMetadataFile' |
| 16 | + ) |
| 17 | + CmdletsToExport = '' |
| 18 | + VariablesToExport = '' |
| 19 | + AliasesToExport = '' |
20 | 20 |
|
21 | | -NestedModules = @( |
22 | | - 'PSSwaggerMetadata.psm1', |
23 | | - 'PSSwaggerUtility' |
24 | | - ) |
| 21 | + NestedModules = @( |
| 22 | + 'PSSwaggerMetadata.psm1', |
| 23 | + 'PSSwaggerUtility' |
| 24 | + ) |
25 | 25 |
|
26 | | -FileList = @( |
27 | | - 'Definitions.psm1', |
28 | | - 'Generated.Resources.psd1', |
29 | | - 'Paths.psm1', |
30 | | - 'PSSwagger.Constants.ps1', |
31 | | - 'PSSwagger.psd1', |
32 | | - 'PSSwagger.psm1', |
33 | | - 'PSSwagger.Resources.psd1', |
34 | | - 'PSSwaggerMetadata.psm1', |
35 | | - 'SwaggerUtils.psm1', |
36 | | - 'Utilities.psm1', |
37 | | - 'Trie.ps1' |
38 | | - ) |
| 26 | + FileList = @( |
| 27 | + 'AssemblyGenerationHelpers.ps1', |
| 28 | + 'AssemblyGenerationHelpers.Resources.psd1', |
| 29 | + 'Definitions.psm1', |
| 30 | + 'New-ArmServiceClient.ps1', |
| 31 | + 'New-ServiceClient.ps1', |
| 32 | + 'Paths.psm1', |
| 33 | + 'PluralToSingularMap.json', |
| 34 | + 'PSCommandVerbMap.ps1', |
| 35 | + 'PSSwagger.Constants.ps1', |
| 36 | + 'PSSwagger.psd1', |
| 37 | + 'PSSwagger.psm1', |
| 38 | + 'PSSwagger.Resources.psd1', |
| 39 | + 'PSSwaggerMetadata.psm1', |
| 40 | + 'SwaggerUtils.psm1', |
| 41 | + 'Test-CoreRequirements.ps1', |
| 42 | + 'Test-FullRequirements.ps1', |
| 43 | + 'Trie.ps1', |
| 44 | + 'Utilities.psm1', |
| 45 | + 'ServiceTypes\azure.PSMeta.json', |
| 46 | + 'ServiceTypes\azure_stack.PSMeta.json' |
| 47 | + ) |
39 | 48 |
|
40 | | -PrivateData = @{ |
41 | | - PSData = @{ |
42 | | - Tags = @('Azure', |
43 | | - 'Swagger', |
44 | | - 'OpenApi', |
45 | | - 'PSEdition_Desktop') |
46 | | - ProjectUri = 'https://github.com/PowerShell/PSSwagger' |
47 | | - LicenseUri = 'https://github.com/PowerShell/PSSwagger/blob/master/LICENSE' |
48 | | - ReleaseNotes = @' |
| 49 | + PrivateData = @{ |
| 50 | + PSData = @{ |
| 51 | + Tags = @('Azure', |
| 52 | + 'Swagger', |
| 53 | + 'OpenApi', |
| 54 | + 'PSEdition_Desktop') |
| 55 | + ProjectUri = 'https://github.com/PowerShell/PSSwagger' |
| 56 | + LicenseUri = 'https://github.com/PowerShell/PSSwagger/blob/master/LICENSE' |
| 57 | + ReleaseNotes = @' |
49 | 58 | Please refer to https://github.com/PowerShell/PSSwagger/blob/developer/CHANGELOG.md |
50 | 59 | '@ |
| 60 | + } |
51 | 61 | } |
52 | | -} |
53 | 62 |
|
54 | 63 | } |
55 | 64 |
|
0 commit comments