|
3 | 3 |
|
4 | 4 | @{
|
5 | 5 |
|
6 |
| -# Script module or binary module file associated with this manifest. |
7 |
| -RootModule = 'convertDscResource.psm1' |
| 6 | + # Script module or binary module file associated with this manifest. |
| 7 | + RootModule = 'convertDscResource.psm1' |
8 | 8 |
|
9 |
| -# Version number of this module. |
10 |
| -moduleVersion = '0.0.1' |
| 9 | + # Version number of this module. |
| 10 | + moduleVersion = '0.0.1' |
11 | 11 |
|
12 |
| -# ID used to uniquely identify this module |
13 |
| -GUID = '95f93fd3-34ff-417e-80e4-f0112918a0bd' |
| 12 | + # ID used to uniquely identify this module |
| 13 | + GUID = '95f93fd3-34ff-417e-80e4-f0112918a0bd' |
14 | 14 |
|
15 |
| -# Author of this module |
16 |
| -Author = 'Microsoft Corporation' |
| 15 | + # Author of this module |
| 16 | + Author = 'Microsoft Corporation' |
17 | 17 |
|
18 |
| -# Company or vendor of this module |
19 |
| -CompanyName = 'Microsoft Corporation' |
| 18 | + # Company or vendor of this module |
| 19 | + CompanyName = 'Microsoft Corporation' |
20 | 20 |
|
21 |
| -# Copyright statement for this module |
22 |
| -Copyright = '(c) Microsoft Corporation. All rights reserved.' |
| 21 | + # Copyright statement for this module |
| 22 | + Copyright = '(c) Microsoft Corporation. All rights reserved.' |
23 | 23 |
|
24 |
| -# Description of the functionality provided by this module |
25 |
| -Description = 'PowerShell Desired State Configuration Module for converting DSC Resources to JSON format' |
| 24 | + # Description of the functionality provided by this module |
| 25 | + Description = 'PowerShell Desired State Configuration Module for converting DSC Resources to JSON format' |
26 | 26 |
|
27 |
| -# 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. |
28 |
| -FunctionsToExport = @( |
| 27 | + # Minimum version of the Windows PowerShell engine required by this module |
| 28 | + PowerShellVersion = '5.1' |
| 29 | + |
| 30 | + # 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. |
| 31 | + FunctionsToExport = @( |
29 | 32 | 'Write-DscTrace'
|
30 | 33 | 'Build-DscConfigDocument'
|
31 | 34 | )
|
32 | 35 |
|
33 |
| -# 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. |
34 |
| -CmdletsToExport = @() |
| 36 | + # 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. |
| 37 | + CmdletsToExport = @() |
35 | 38 |
|
36 |
| -# Variables to export from this module |
37 |
| -VariablesToExport = @() |
| 39 | + # Variables to export from this module |
| 40 | + VariablesToExport = @() |
38 | 41 |
|
39 |
| -# 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. |
40 |
| -AliasesToExport = @() |
| 42 | + # 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. |
| 43 | + AliasesToExport = @() |
41 | 44 |
|
42 |
| -PrivateData = @{ |
43 |
| - PSData = @{ |
44 |
| - ProjectUri = 'https://github.com/PowerShell/DSC' |
| 45 | + PrivateData = @{ |
| 46 | + PSData = @{ |
| 47 | + ProjectUri = 'https://github.com/PowerShell/DSC' |
| 48 | + } |
45 | 49 | }
|
46 | 50 | }
|
47 |
| -} |
|
0 commit comments