-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathPowerShellGetCompat.psd1
More file actions
90 lines (85 loc) · 2.78 KB
/
Copy pathPowerShellGetCompat.psd1
File metadata and controls
90 lines (85 loc) · 2.78 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
80
81
82
83
84
85
86
87
88
89
90
#
# Module manifest for module 'PowerShellGetCompat'
#
# Generated by: americks
#
# Generated on: 7/14/2020
#
@{
RootModule = 'PowerShellGetCompat.psm1'
ModuleVersion = '1.0.0'
GUID = '68ec3ec1-55bf-42f8-9add-d224e5c76548'
Author = 'Microsoft Corporation'
CompanyName = 'Microsoft Corporation'
Copyright = '(c) Microsoft Corporation. All rights reserved.'
Description = 'PowerShellGetCompat 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-CommandProxy",
"Find-DscResourceProxy",
"Find-ModuleProxy",
"Find-RoleCapabilityProxy",
"Find-ScriptProxy",
"Get-InstalledModuleProxy",
"Get-InstalledScriptProxy",
"Get-PSRepositoryProxy",
"Install-ModuleProxy",
"Install-ScriptProxy",
"Publish-ModuleProxy",
"Publish-ScriptProxy",
"Register-PSRepositoryProxy",
"Save-ModuleProxy",
"Save-ScriptProxy",
"Set-PSRepositoryProxy",
"Uninstall-ModuleProxy",
"Uninstall-ScriptProxy",
"Unregister-PSRepositoryProxy",
"Update-ModuleProxy",
"Update-ScriptProxy"
)
CmdletsToExport = @()
VariablesToExport = '*'
AliasesToExport = @(
"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"
)
RequiredModules = @(@{ModuleName = 'PowerShellGet'; ModuleVersion = '3.0.0-beta7' })
PrivateData = @{
PSData = @{
Tags = @('PackageManagement',
'PSEdition_Desktop',
'PSEdition_Core',
'Linux',
'Mac',
'Windows')
LicenseUri = 'https://github.com/PowerShell/PowerShellGetCompat/blob/master/LICENSE'
ProjectUri = 'https://github.com/PowerShell/PowerShellGetCompat'
ReleaseNotes = @'
### 1.0.0
* Initial release
## For full history of release notes see changelog:
https://github.com/PowerShell/PowerShellGetCompat/blob/master/CHANGELOG.md
'@
}
}
# HelpInfoURI = ''
}