|
8 | 8 | RootModule = "" |
9 | 9 |
|
10 | 10 | # Version number of this module. |
11 | | -ModuleVersion = '3.2.1' |
| 11 | +ModuleVersion = '3.3.0' |
12 | 12 |
|
13 | 13 | # Supported PSEditions |
14 | 14 | CompatiblePSEditions = @("Desktop","Core") |
@@ -72,12 +72,13 @@ else { |
72 | 72 | # 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. |
73 | 73 | FunctionsToExport = if ($PSEdition -eq 'Core') { |
74 | 74 | 'New-PSRemoteOperation', 'Invoke-PSRemoteOperation', 'Get-PSRemoteOperationResult', 'Wait-PSRemoteOperation', |
75 | | - 'Get-PSRemoteOperation' |
| 75 | + 'Get-PSRemoteOperation','Register-PSRemoteOpPath','Import-PSRemoteOpPath' |
76 | 76 | } |
77 | 77 | else { |
78 | 78 | #Windows PowerShell gets everything |
79 | 79 | 'New-PSRemoteOperation', 'Invoke-PSRemoteOperation', 'Get-PSRemoteOperationResult', 'Register-PSRemoteOperationWatcher', |
80 | | - 'Wait-PSRemoteOperation', 'New-PSRemoteOperationForm', 'Get-PSRemoteOperation' |
| 80 | + 'Wait-PSRemoteOperation', 'New-PSRemoteOperationForm', 'Get-PSRemoteOperation','Register-PSRemoteOpPath', |
| 81 | + 'Import-PSRemoteOpPath' |
81 | 82 | } |
82 | 83 |
|
83 | 84 | # 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. |
@@ -106,25 +107,26 @@ else { |
106 | 107 | # 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. |
107 | 108 | PrivateData = @{ |
108 | 109 |
|
109 | | - PSData = @{ |
| 110 | + PSData = @{ |
110 | 111 |
|
111 | | - # Tags applied to this module. These help with module discovery in online galleries. |
112 | | - Tags = @("Remoting","ScheduledJob") |
| 112 | + # Tags applied to this module. These help with module discovery in online galleries. |
| 113 | + Tags = @("Remoting", "ScheduledJob") |
113 | 114 |
|
114 | | - # A URL to the license for this module. |
115 | | - LicenseUri = 'https://github.com/jdhitsolutions/PSRemoteOperations/blob/master/license.txt' |
| 115 | + # A URL to the license for this module. |
| 116 | + LicenseUri = 'https://github.com/jdhitsolutions/PSRemoteOperations/blob/master/license.txt' |
116 | 117 |
|
117 | | - # A URL to the main website for this project. |
118 | | - ProjectUri = 'https://github.com/jdhitsolutions/PSRemoteOperations' |
| 118 | + # A URL to the main website for this project. |
| 119 | + ProjectUri = 'https://github.com/jdhitsolutions/PSRemoteOperations' |
119 | 120 |
|
120 | | - # A URL to an icon representing this module. |
121 | | - # IconUri = '' |
| 121 | + # A URL to an icon representing this module. |
| 122 | + # IconUri = '' |
122 | 123 |
|
123 | | - # ReleaseNotes of this module |
124 | | - # ReleaseNotes = '' |
125 | | - # ExternalModuleDependencies = "PSScheduledJob" |
| 124 | + # ReleaseNotes of this module |
| 125 | + ReleaseNotes = 'http://bit.ly/2KsYbu2' |
126 | 126 |
|
127 | | - } # End of PSData hashtable |
| 127 | + # ExternalModuleDependencies = "PSScheduledJob" |
| 128 | + |
| 129 | + } # End of PSData hashtable |
128 | 130 |
|
129 | 131 | } # End of PrivateData hashtable |
130 | 132 |
|
|
0 commit comments