-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathPowerShellGet.psd1
More file actions
73 lines (67 loc) · 2.13 KB
/
PowerShellGet.psd1
File metadata and controls
73 lines (67 loc) · 2.13 KB
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
#
# Module manifest for module 'PowerShellGet'
#
# Generated by: americks
#
# Generated on: 7/14/2020
#
@{
RootModule = 'PowerShellGet.psm1'
ModuleVersion = '3.0.23'
GUID = '68ec3ec1-55bf-42f8-9add-d224e5c76548'
Author = 'Microsoft Corporation'
CompanyName = 'Microsoft Corporation'
Copyright = '(c) Microsoft Corporation. All rights reserved.'
Description = 'PowerShellGet is a compatibility module that allows use of PowerShellGet 2.x (and below) cmdlet syntax with PSResourceGet functionality by making a best effort mapping between the cmdlet interfaces of both versions of the module.'
PowerShellVersion = '3.0'
FunctionsToExport = @(
"Find-Command",
"Find-DscResource",
"Find-Module",
"Find-RoleCapability",
"Find-Script",
"Get-InstalledModule",
"Get-InstalledScript",
"Get-PSRepository",
"Install-Module",
"Install-Script",
"Publish-Module",
"Publish-Script",
"Register-PSRepository",
"Save-Module",
"Save-Script",
"Set-PSRepository",
"Uninstall-Module",
"Uninstall-Script",
"Unregister-PSRepository",
"Update-Module",
"Update-Script"
)
CmdletsToExport = @()
VariablesToExport = '*'
AliasesToExport = @()
PrivateData = @{
PSData = @{
Prerelease = 'beta23'
Tags = @('PackageManagement',
'PSEdition_Desktop',
'PSEdition_Core',
'Linux',
'Mac',
'Windows')
LicenseUri = 'https://github.com/PowerShell/PowerShellGet/blob/master/LICENSE'
ProjectUri = 'https://github.com/PowerShell/PowerShellGet'
ReleaseNotes = @'
### 3.0.23-beta23
* Changes
- Add internal hook for PSResourceGet telemetry
### 3.0.22-beta22
* Changes
- This module was renamed from 'CompatPowerShellGet' to 'PowerShellGet'
## For full history of release notes see changelog:
https://github.com/PowerShell/PowerShellGet/blob/master/CHANGELOG.md
'@
}
}
# HelpInfoURI = ''
}