|
1 | 1 | @{
|
2 |
| -RootModule = 'PSModule.psm1' |
3 |
| -ModuleVersion = '2.1.0' |
4 |
| -GUID = '1d73a601-4a6c-43c5-ba3f-619b18bbb404' |
5 |
| -Author = 'Microsoft Corporation' |
6 |
| -CompanyName = 'Microsoft Corporation' |
7 |
| -Copyright = '(c) Microsoft Corporation. All rights reserved.' |
8 |
| -Description = 'PowerShell module with commands for discovering, installing, updating and publishing the PowerShell artifacts like Modules, DSC Resources, Role Capabilities and Scripts.' |
9 |
| -PowerShellVersion = '3.0' |
10 |
| -FormatsToProcess = 'PSGet.Format.ps1xml' |
11 |
| -FunctionsToExport = @( |
12 |
| - 'Find-Command', |
13 |
| - 'Find-DSCResource', |
14 |
| - 'Find-Module', |
15 |
| - 'Find-RoleCapability', |
16 |
| - 'Find-Script', |
17 |
| - 'Get-InstalledModule', |
18 |
| - 'Get-InstalledScript', |
19 |
| - 'Get-PSRepository', |
20 |
| - 'Install-Module', |
21 |
| - 'Install-Script', |
22 |
| - 'New-ScriptFileInfo', |
23 |
| - 'Publish-Module', |
24 |
| - 'Publish-Script', |
25 |
| - 'Register-PSRepository', |
26 |
| - 'Save-Module', |
27 |
| - 'Save-Script', |
28 |
| - 'Set-PSRepository', |
29 |
| - 'Test-ScriptFileInfo', |
30 |
| - 'Uninstall-Module', |
31 |
| - 'Uninstall-Script', |
32 |
| - 'Unregister-PSRepository', |
33 |
| - 'Update-Module', |
34 |
| - 'Update-ModuleManifest', |
35 |
| - 'Update-Script', |
36 |
| - 'Update-ScriptFileInfo') |
37 |
| - |
38 |
| -VariablesToExport = "*" |
39 |
| -AliasesToExport = @('inmo','fimo','upmo','pumo') |
40 |
| -FileList = @('PSModule.psm1', |
41 |
| - 'PSGet.Format.ps1xml', |
42 |
| - 'PSGet.Resource.psd1') |
43 |
| -RequiredModules = @(@{ModuleName='PackageManagement';ModuleVersion='1.1.7.0'}) |
44 |
| -PrivateData = @{ |
45 |
| - "PackageManagementProviders" = 'PSModule.psm1' |
46 |
| - "SupportedPowerShellGetFormatVersions" = @('1.x','2.x') |
47 |
| - PSData = @{ |
48 |
| - Tags = @('Packagemanagement', |
49 |
| - 'Provider', |
50 |
| - 'PSEdition_Desktop', |
51 |
| - 'PSEdition_Core', |
52 |
| - 'Linux', |
53 |
| - 'Mac') |
54 |
| - ProjectUri = 'https://go.microsoft.com/fwlink/?LinkId=828955' |
55 |
| - LicenseUri = 'https://go.microsoft.com/fwlink/?LinkId=829061' |
56 |
| - ReleaseNotes = @' |
| 2 | + RootModule = 'PSModule.psm1' |
| 3 | + ModuleVersion = '2.1.1' |
| 4 | + GUID = '1d73a601-4a6c-43c5-ba3f-619b18bbb404' |
| 5 | + Author = 'Microsoft Corporation' |
| 6 | + CompanyName = 'Microsoft Corporation' |
| 7 | + Copyright = '(c) Microsoft Corporation. All rights reserved.' |
| 8 | + Description = 'PowerShell module with commands for discovering, installing, updating and publishing the PowerShell artifacts like Modules, DSC Resources, Role Capabilities and Scripts.' |
| 9 | + PowerShellVersion = '3.0' |
| 10 | + FormatsToProcess = 'PSGet.Format.ps1xml' |
| 11 | + FunctionsToExport = @( |
| 12 | + 'Find-Command', |
| 13 | + 'Find-DSCResource', |
| 14 | + 'Find-Module', |
| 15 | + 'Find-RoleCapability', |
| 16 | + 'Find-Script', |
| 17 | + 'Get-InstalledModule', |
| 18 | + 'Get-InstalledScript', |
| 19 | + 'Get-PSRepository', |
| 20 | + 'Install-Module', |
| 21 | + 'Install-Script', |
| 22 | + 'New-ScriptFileInfo', |
| 23 | + 'Publish-Module', |
| 24 | + 'Publish-Script', |
| 25 | + 'Register-PSRepository', |
| 26 | + 'Save-Module', |
| 27 | + 'Save-Script', |
| 28 | + 'Set-PSRepository', |
| 29 | + 'Test-ScriptFileInfo', |
| 30 | + 'Uninstall-Module', |
| 31 | + 'Uninstall-Script', |
| 32 | + 'Unregister-PSRepository', |
| 33 | + 'Update-Module', |
| 34 | + 'Update-ModuleManifest', |
| 35 | + 'Update-Script', |
| 36 | + 'Update-ScriptFileInfo') |
| 37 | + |
| 38 | + VariablesToExport = "*" |
| 39 | + AliasesToExport = @('inmo', 'fimo', 'upmo', 'pumo') |
| 40 | + FileList = @('PSModule.psm1', |
| 41 | + 'PSGet.Format.ps1xml', |
| 42 | + 'PSGet.Resource.psd1') |
| 43 | + RequiredModules = @(@{ModuleName = 'PackageManagement'; ModuleVersion = '1.1.7.0'}) |
| 44 | + PrivateData = @{ |
| 45 | + "PackageManagementProviders" = 'PSModule.psm1' |
| 46 | + "SupportedPowerShellGetFormatVersions" = @('1.x', '2.x') |
| 47 | + PSData = @{ |
| 48 | + Tags = @('Packagemanagement', |
| 49 | + 'Provider', |
| 50 | + 'PSEdition_Desktop', |
| 51 | + 'PSEdition_Core', |
| 52 | + 'Linux', |
| 53 | + 'Mac') |
| 54 | + ProjectUri = 'https://go.microsoft.com/fwlink/?LinkId=828955' |
| 55 | + LicenseUri = 'https://go.microsoft.com/fwlink/?LinkId=829061' |
| 56 | + ReleaseNotes = @' |
| 57 | +## 2.1.1 |
| 58 | +
|
| 59 | +- Fix DSC resource folder structure |
| 60 | +
|
57 | 61 | ## 2.1.0
|
58 | 62 |
|
59 | 63 | Breaking Change
|
@@ -243,8 +247,8 @@ Bug fixes
|
243 | 247 | * Proxy Authentication support.
|
244 | 248 | * Responses to a number of user requests and issues.
|
245 | 249 | '@
|
| 250 | + } |
246 | 251 | }
|
247 |
| -} |
248 | 252 |
|
249 |
| -HelpInfoURI = 'http://go.microsoft.com/fwlink/?linkid=855963' |
| 253 | + HelpInfoURI = 'http://go.microsoft.com/fwlink/?linkid=855963' |
250 | 254 | }
|
0 commit comments