forked from PowerShell/PSResourceGet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPowerShellGet.psd1
93 lines (81 loc) · 3.34 KB
/
PowerShellGet.psd1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
@{
RootModule = 'PSModule.psm1'
ModuleVersion = '3.0.0'
GUID = '1d73a601-4a6c-43c5-ba3f-619b18bbb404'
Author = 'Microsoft Corporation'
CompanyName = 'Microsoft Corporation'
Copyright = '(c) Microsoft Corporation. All rights reserved.'
Description = 'PowerShell module with commands for discovering, installing, updating and publishing the PowerShell artifacts like Modules, DSC Resources, Role Capabilities and Scripts.'
PowerShellVersion = '3.0'
FunctionsToExport = @(
'Find-PSResource',
'Get-PSResourceRepository',
'Get-PSResource',
'Install-PSResource',
'Register-PSResourceRepository',
'Save-PSResource',
'Set-PSResourceRepository',
'Publish-PSResource',
'Uninstall-PSResource',
'Unregister-PSResourceRepository',
'Update-PSResource')
VariablesToExport = 'PSGetPath'
AliasesToExport = @('inmo', 'fimo', 'upmo', 'pumo')
PrivateData = @{
PSData = @{
Prerelease = 'beta7'
Tags = @('PackageManagement',
'PSEdition_Desktop',
'PSEdition_Core',
'Linux',
'Mac',
'Windows')
ProjectUri = 'https://go.microsoft.com/fwlink/?LinkId=828955'
LicenseUri = 'https://go.microsoft.com/fwlink/?LinkId=829061'
ReleaseNotes = @'
### 3.0.0-beta7
New Feature
* Completed functionality for Update-PSResource
* Input-Object parameter for Install-PSResource
Bug Fixes
* Improved experience when loading module for diffent frameworks
* Bug fix for assembly loading error in Publish-PSResource
* Allow for relative paths when registering psrepository
* Improved error handling for Install-PSResource and Update-PSResource
* Remove prerelease tag from module version directory
* Fix error getting thrown from paths with incorrectly formatted module versions
### 3.0.0-beta6
New Feature
* Implement functionality for Publish-PSResource
### 3.0.0-beta5
* Note: 3.0.0-beta5 was skipped due to a packaging error
### 3.0.0-beta4
New Feature
* Implement -Repository '*' in Find-PSResource to search through all repositories instead of prioritized repository
Bug Fix
* Fix poor error handling for when repository is not accessible in Find-PSResource
### 3.0.0-beta3
New Features
* -RequiredResource parameter for Install-PSResource
* -RequiredResourceFile parameter for Install-PSResource
* -IncludeXML parameter in Save-PSResource
Bug Fixes
* Resolved paths in Install-PSRsource and Save-PSResource
* Resolved issues with capitalization (for unix systems) in Install-PSResource and Save-PSResource
### 3.0.0-beta2
New Features
* Progress bar and -Quiet parameter for Install-PSResource
* -TrustRepository parameter for Install-PSResource
* -NoClobber parameter for Install-PSResource
* -AcceptLicense for Install-PSResource
* -Force parameter for Install-PSResource
* -Reinstall parameter for Install-PSResource
* Improved error handling
### 3.0.0-beta1
BREAKING CHANGE
* Preview version of PowerShellGet. Many features are not fully implemented yet. Please see https://devblogs.microsoft.com/powershell/powershellget-3-0-preview1 for more details.
'@
}
}
HelpInfoURI = 'http://go.microsoft.com/fwlink/?linkid=855963'
}