|
1 | 1 | @{ |
2 | 2 | # Script module or binary module file associated with this manifest |
3 | | - RootModule = 'ADMF.Core.psm1' |
| 3 | + RootModule = 'ADMF.Core.psm1' |
4 | 4 |
|
5 | 5 | # Version number of this module. |
6 | | - ModuleVersion = '1.1.9' |
| 6 | + ModuleVersion = '1.2.12' |
7 | 7 |
|
8 | 8 | # ID used to uniquely identify this module |
9 | | - GUID = '11e2d894-33d7-4020-a65e-f13c2f1893aa' |
| 9 | + GUID = '11e2d894-33d7-4020-a65e-f13c2f1893aa' |
10 | 10 |
|
11 | 11 | # Author of this module |
12 | | - Author = 'Friedrich Weinmann' |
| 12 | + Author = 'Friedrich Weinmann' |
13 | 13 |
|
14 | 14 | # Company or vendor of this module |
15 | | - CompanyName = 'Microsoft' |
| 15 | + CompanyName = 'Microsoft' |
16 | 16 |
|
17 | 17 | # Copyright statement for this module |
18 | | - Copyright = 'Copyright (c) 2020 Friedrich Weinmann' |
| 18 | + Copyright = 'Copyright (c) 2020 Friedrich Weinmann' |
19 | 19 |
|
20 | 20 | # Description of the functionality provided by this module |
21 | | - Description = 'Central Tooling used across available across all ADMF Project modules' |
| 21 | + Description = 'Central Tooling used across available across all ADMF Project modules' |
22 | 22 |
|
23 | 23 | # Minimum version of the Windows PowerShell engine required by this module |
24 | 24 | PowerShellVersion = '5.0' |
25 | 25 |
|
26 | 26 | # Modules that must be imported into the global environment prior to importing |
27 | 27 | # this module |
28 | | - RequiredModules = @( |
29 | | - @{ ModuleName = 'PSFramework'; ModuleVersion = '1.7.270' } |
| 28 | + RequiredModules = @( |
| 29 | + @{ ModuleName = 'PSFramework'; ModuleVersion = '1.13.416' } |
30 | 30 |
|
31 | 31 | # @{ ModuleName = 'ResolveString'; ModuleVersion = '1.0.0' } |
32 | 32 | ) |
|
38 | 38 | # TypesToProcess = @('xml\ADMF.Core.Types.ps1xml') |
39 | 39 |
|
40 | 40 | # Format files (.ps1xml) to be loaded when importing this module |
41 | | - FormatsToProcess = @('xml\ADMF.Core.Format.ps1xml') |
| 41 | + FormatsToProcess = @('xml\ADMF.Core.Format.ps1xml') |
42 | 42 |
|
43 | 43 | # Functions to export from this module |
44 | 44 | FunctionsToExport = @( |
45 | 45 | 'Clear-AdcConfiguration' |
46 | 46 | 'Compare-AdcProperty' |
47 | 47 | 'Get-AdcExchangeVersion' |
| 48 | + 'Get-AdcRemotingConfig' |
48 | 49 | 'New-AdcChange' |
| 50 | + 'New-AdcPSSession' |
| 51 | + 'Remove-AdcRemotingConfig' |
| 52 | + 'Set-AdcRemotingConfig' |
49 | 53 | 'Sync-AdcObject' |
50 | 54 | 'Write-AdcChangeLog' |
51 | 55 | ) |
|
66 | 70 | # FileList = @() |
67 | 71 |
|
68 | 72 | # Private data to pass to the module specified in ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell. |
69 | | - PrivateData = @{ |
| 73 | + PrivateData = @{ |
70 | 74 |
|
71 | 75 | #Support for PowerShellGet galleries. |
72 | 76 | PSData = @{ |
73 | 77 |
|
74 | 78 | # Tags applied to this module. These help with module discovery in online galleries. |
75 | | - Tags = @('activedirectory', 'configuration', 'admf', 'management') |
| 79 | + Tags = @('activedirectory', 'configuration', 'admf', 'management') |
76 | 80 |
|
77 | 81 | # A URL to the license for this module. |
78 | | - LicenseUri = 'https://github.com/ActiveDirectoryManagementFramework/ADMF.Core/blob/master/LICENSE' |
| 82 | + LicenseUri = 'https://github.com/ActiveDirectoryManagementFramework/ADMF.Core/blob/master/LICENSE' |
79 | 83 |
|
80 | 84 | # A URL to the main website for this project. |
81 | | - ProjectUri = 'https://admf.one' |
| 85 | + ProjectUri = 'https://admf.one' |
82 | 86 |
|
83 | 87 | # A URL to an icon representing this module. |
84 | 88 | # IconUri = '' |
|
0 commit comments