-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathCompatPowerShellGet.psd1
More file actions
79 lines (71 loc) · 2.31 KB
/
Copy pathCompatPowerShellGet.psd1
File metadata and controls
79 lines (71 loc) · 2.31 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
74
75
76
77
78
79
#
# Module manifest for module 'CompatPowerShellGet'
#
# Generated by: americks
#
# Generated on: 7/14/2020
#
@{
RootModule = 'CompatPowerShellGet.psm1'
ModuleVersion = '0.0.4'
GUID = '68ec3ec1-55bf-42f8-9add-d224e5c76548'
Author = 'Microsoft Corporation'
CompanyName = 'Microsoft Corporation'
Copyright = '(c) Microsoft Corporation. All rights reserved.'
Description = 'CompatPowerShellGet is a compatibility module that allows use of PowerShellGet 2.x (and below) cmdlet syntax with PowerShellGet 3.0 (and newer) 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 = @{
Tags = @('PackageManagement',
'PSEdition_Desktop',
'PSEdition_Core',
'Linux',
'Mac',
'Windows')
LicenseUri = 'https://github.com/PowerShell/CompatPowerShellGet/blob/master/LICENSE'
ProjectUri = 'https://github.com/PowerShell/CompatPowerShellGet'
ReleaseNotes = @'
### 0.0.4
* Changes
- Update module to be compatible with latest version of PowerShellGet (3.0.21-beta21)
### 0.0.3
* Changes
- Updated reference to PowerShellGet 'Url' parameter to 'Uri' to reflect changes made in PowerShellGet
### 0.0.2
* Bug Fix
- Remove -Force parameter when calling into v3 cmdlets
### 0.0.1
* Initial release
## For full history of release notes see changelog:
https://github.com/PowerShell/CompatPowerShellGet/blob/master/CHANGELOG.md
'@
}
}
# HelpInfoURI = ''
}