winget-cli

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

Microsoft.WinGet.Configuration.psd1 (1354B)


      1 @{
      2     RootModule = "Microsoft.WinGet.Configuration.Cmdlets.dll"
      3     ModuleVersion = '0.0.1'
      4     CompatiblePSEditions = 'Core'
      5     GUID = '79b6b07b-7be5-4673-9cd1-fcbe3d79ba82'
      6     Author = 'Microsoft Corporation'
      7     CompanyName = 'Microsoft Corporation'
      8     Copyright = '(c) Microsoft Corporation. All rights reserved.'
      9     Description = 'PowerShell Module for the Windows Package Manager Configuration.'
     10     PowerShellVersion = '7.4.6'
     11 
     12     FunctionsToExport = @()
     13     AliasesToExport      = @('cmpwgc', 'cnwgc', 'ctwgcy', 'gwgc', 'gwgcd', 'iwgc', 'rwgch', 'sawgc', 'spwgc','twgc')
     14 
     15     CmdletsToExport = @(
     16         "Complete-WinGetConfiguration"
     17         "Get-WinGetConfiguration"
     18         "Get-WinGetConfigurationDetails"
     19         "Invoke-WinGetConfiguration"
     20         "Start-WinGetConfiguration"
     21         "Test-WinGetConfiguration"
     22         "Confirm-WinGetConfiguration"
     23         "Stop-WinGetConfiguration"
     24         "Remove-WinGetConfigurationHistory"
     25         "ConvertTo-WinGetConfigurationYaml"
     26     )
     27 
     28     PrivateData = @{
     29         PSData = @{
     30             Tags = @(
     31                 'WindowsPackageManager',
     32                 'WinGet'
     33             )
     34             ProjectUri = 'https://github.com/microsoft/winget-cli'
     35             IconUri = 'https://aka.ms/winget-icon'
     36             Prerelease = 'alpha'
     37         }
     38     }
     39 }
     40