|
9 | 9 | @{ |
10 | 10 |
|
11 | 11 | # Script module or binary module file associated with this manifest. |
12 | | - RootModule = 'PowerFGT.psm1' |
| 12 | + RootModule = 'PowerFGT.psm1' |
13 | 13 |
|
14 | 14 | # Version number of this module. |
15 | | - ModuleVersion = '0.10.0' |
| 15 | + ModuleVersion = '0.10.1' |
16 | 16 |
|
17 | 17 | # Supported PSEditions |
18 | | - CompatiblePSEditions = @('Desktop', 'Core') |
| 18 | + #CompatiblePSEditions = @('Desktop', 'Core') |
19 | 19 |
|
20 | 20 | # ID used to uniquely identify this module |
21 | | - GUID = '608e2723-7ce4-4f86-a3c8-ac1acb4f1f66' |
| 21 | + GUID = '608e2723-7ce4-4f86-a3c8-ac1acb4f1f66' |
22 | 22 |
|
23 | 23 | # Author of this module |
24 | | - Author = 'Alexis La Goutte' |
| 24 | + Author = 'Alexis La Goutte' |
25 | 25 |
|
26 | 26 | # Company or vendor of this module |
27 | 27 | #CompanyName = 'Unknown' |
28 | 28 |
|
29 | 29 | # Copyright statement for this module |
30 | | - Copyright = '(c) Alexis La Goutte. All rights reserved.' |
| 30 | + Copyright = '(c) Alexis La Goutte. All rights reserved.' |
31 | 31 |
|
32 | 32 | # Description of the functionality provided by this module |
33 | | - Description = 'PowerShell module to query the Fortigate API' |
| 33 | + Description = 'PowerShell module to query the Fortigate API' |
34 | 34 |
|
35 | 35 | # Minimum version of the PowerShell engine required by this module |
36 | | - PowerShellVersion = '3.0' |
| 36 | + PowerShellVersion = '3.0' |
37 | 37 |
|
38 | 38 | # Name of the PowerShell host required by this module |
39 | 39 | # PowerShellHostName = '' |
|
69 | 69 | # NestedModules = @() |
70 | 70 |
|
71 | 71 | # 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. |
72 | | - FunctionsToExport = '*' |
| 72 | + FunctionsToExport = '*' |
73 | 73 |
|
74 | 74 | # 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. |
75 | | - CmdletsToExport = @() |
| 75 | + CmdletsToExport = @() |
76 | 76 |
|
77 | 77 | # Variables to export from this module |
78 | | - VariablesToExport = '*' |
| 78 | + VariablesToExport = '*' |
79 | 79 |
|
80 | 80 | # 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. |
81 | | - AliasesToExport = @() |
| 81 | + AliasesToExport = @() |
82 | 82 |
|
83 | 83 | # DSC resources to export from this module |
84 | 84 | # DscResourcesToExport = @() |
|
90 | 90 | # FileList = @() |
91 | 91 |
|
92 | 92 | # 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. |
93 | | - PrivateData = @{ |
| 93 | + PrivateData = @{ |
94 | 94 |
|
95 | 95 | PSData = @{ |
96 | 96 |
|
97 | 97 | # Tags applied to this module. These help with module discovery in online galleries. |
98 | | - Tags = @('Fortinet', 'FortiGate', 'API') |
| 98 | + Tags = @('Fortinet', 'FortiGate', 'API', 'PSEdition_Core', 'PSEdition_Desktop') |
99 | 99 |
|
100 | 100 | # A URL to the license for this module. |
101 | 101 | LicenseUri = 'https://github.com/FortiPower/PowerFGT/blob/master/LICENSE' |
|
0 commit comments