Microsoft.WinGet.Client.psd1 (5368B)
1 # 2 # Module manifest for module 'Microsoft.WinGet.Client' 3 # 4 # Created by: Microsoft Corporation 5 # 6 7 @{ 8 9 # Script module or binary module file associated with this manifest. 10 RootModule = if ($PSEdition -like 'Core') 11 { 12 "net8.0-windows10.0.26100.0\Microsoft.WinGet.Client.Cmdlets.dll" 13 } 14 else 15 { 16 "net48\Microsoft.WinGet.Client.Cmdlets.dll" 17 } 18 19 # Version number of this module. 20 ModuleVersion = '0.1.0' 21 22 # Supported PSEditions 23 CompatiblePSEditions = @('Desktop', 'Core') 24 25 # ID used to uniquely identify this module 26 GUID = 'e11157e2-cd24-4250-83b8-c6654ea4926a' 27 28 # Author of this module 29 Author = 'Microsoft Corporation' 30 31 # Company or vendor of this module 32 CompanyName = 'Microsoft Corporation' 33 34 # Copyright statement for this module 35 Copyright = '(c) Microsoft Corporation. All rights reserved.' 36 37 # Description of the functionality provided by this module 38 Description = 'PowerShell Module for the Windows Package Manager Client.' 39 40 # Minimum version of the PowerShell engine required by this module 41 PowerShellVersion = '5.1.0' 42 43 # Name of the PowerShell host required by this module 44 # PowerShellHostName = '' 45 46 # Minimum version of the PowerShell host required by this module 47 # PowerShellHostVersion = '' 48 49 # Minimum version of Microsoft .NET Framework required by this module. This prerequisite is valid for the PowerShell Desktop edition only. 50 # DotNetFrameworkVersion = '' 51 52 # Minimum version of the common language runtime (CLR) required by this module. This prerequisite is valid for the PowerShell Desktop edition only. 53 # ClrVersion = '' 54 55 # Processor architecture (None, X86, Amd64) required by this module 56 # ProcessorArchitecture = '' 57 58 # Modules that must be imported into the global environment prior to importing this module 59 # RequiredModules = @() 60 61 # Assemblies that must be loaded prior to importing this module 62 # RequiredAssemblies = @() 63 64 # Script files (.ps1) that are run in the caller's environment prior to importing this module. 65 # ScriptsToProcess = @() 66 67 # Type files (.ps1xml) to be loaded when importing this module 68 # TypesToProcess = @() 69 70 # Format files (.ps1xml) to be loaded when importing this module 71 FormatsToProcess = 'Format.ps1xml' 72 73 # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. 74 FunctionsToExport = @() 75 76 # Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export. 77 CmdletsToExport = @( 78 'Get-WinGetVersion' 79 'Find-WinGetPackage' 80 'Get-WinGetPackage' 81 'Get-WinGetSource' 82 'Install-WinGetPackage' 83 'Uninstall-WinGetPackage' 84 'Update-WinGetPackage' 85 'Get-WinGetUserSetting' 86 'Set-WinGetUserSetting' 87 'Test-WinGetUserSetting' 88 'Assert-WinGetPackageManager' 89 'Repair-WinGetPackageManager' 90 'Enable-WinGetSetting' 91 'Disable-WinGetSetting' 92 'Get-WinGetSetting' 93 'Add-WinGetSource' 94 'Remove-WinGetSource' 95 'Reset-WinGetSource' 96 'Export-WinGetPackage' 97 'Repair-WinGetPackage' 98 ) 99 100 # Variables to export from this module 101 # VariablesToExport = @() 102 103 # Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export. 104 AliasesToExport = @('awgs' 105 'awgpm' 106 'dwgs' 107 'ewgs' 108 'ewgp' 109 'fdwgp' 110 'gwgp' 111 'gwgse' 112 'gwgso' 113 'gwgus' 114 'gwgv' 115 'iswgp' 116 'rwgs' 117 'rpwgpm' 118 'rswgs' 119 'swgus' 120 'twgus' 121 'uswgp' 122 'udwgp', 123 'Get-WinGetSettings' 124 'Get-WinGetUserSettings' 125 'Set-WinGetUserSettings' 126 'Test-WinGetUserSettings') 127 128 # DSC resources to export from this module 129 # DscResourcesToExport = @() 130 131 # List of all modules packaged with this module 132 # ModuleList = @() 133 134 # List of all files packaged with this module 135 # FileList = @() 136 137 # Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell. 138 PrivateData = @{ 139 140 PSData = @{ 141 142 # Tags applied to this module. These help with module discovery in online galleries. 143 Tags = @( 144 'PSEdition_Desktop', 145 'PSEdition_Core', 146 'Windows', 147 'WindowsPackageManager', 148 'WinGet' 149 ) 150 151 # A URL to the license for this module. 152 # LicenseUri = '' 153 154 # A URL to the main website for this project. 155 ProjectUri = 'https://github.com/microsoft/winget-cli' 156 157 # A URL to an icon representing this module. 158 IconUri = 'https://aka.ms/winget-icon' 159 160 # ReleaseNotes of this module 161 # ReleaseNotes = '' 162 163 # Prerelease string of this module 164 Prerelease = 'alpha' 165 166 # Flag to indicate whether the module requires explicit user acceptance for install/update/save 167 # RequireLicenseAcceptance = $false 168 169 # External dependent modules of this module 170 # ExternalModuleDependencies = @() 171 172 } # End of PSData hashtable 173 174 } # End of PrivateData hashtable 175 176 # HelpInfo URI of this module 177 # HelpInfoURI = '' 178 179 # Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix. 180 # DefaultCommandPrefix = '' 181 182 }