Skip to content

Commit

Permalink
Remove prerelease, update icon uri, and clean up for PowerShell modul…
Browse files Browse the repository at this point in the history
  • Loading branch information
ryfu-msft authored Jul 24, 2024
1 parent 7d7b3a9 commit 8f425df
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 54 deletions.
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
#
# Module manifest for module 'Microsoft.WinGet.Client'
#
# Generated by: Microsoft Corporation
#
# Generated on: 7/7/2022
# Created by: Microsoft Corporation
#

@{
Expand All @@ -22,7 +20,7 @@ else
ModuleVersion = '0.1.0'

# Supported PSEditions
CompatiblePSEditions = 'Core'
CompatiblePSEditions = @('Desktop', 'Core')

# ID used to uniquely identify this module
GUID = 'e11157e2-cd24-4250-83b8-c6654ea4926a'
Expand Down Expand Up @@ -120,7 +118,6 @@ PrivateData = @{

# Tags applied to this module. These help with module discovery in online galleries.
Tags = @(
'CrescendoBuilt',
'PSEdition_Desktop',
'PSEdition_Core',
'Windows',
Expand All @@ -135,13 +132,13 @@ PrivateData = @{
ProjectUri = 'https://github.com/microsoft/winget-cli'

# A URL to an icon representing this module.
# IconUri = ''
IconUri = 'https://aka.ms/winget-icon'

# ReleaseNotes of this module
# ReleaseNotes = ''

# Prerelease string of this module
Prerelease = 'alpha'
# Prerelease = 'alpha'

# Flag to indicate whether the module requires explicit user acceptance for install/update/save
# RequireLicenseAcceptance = $false
Expand All @@ -151,13 +148,6 @@ PrivateData = @{

} # End of PSData hashtable


# CrescendoVersion
CrescendoVersion = '1.0.0'

# CrescendoGenerated
CrescendoGenerated = '07/07/2022 00:00:00'

} # End of PrivateData hashtable

# HelpInfo URI of this module
Expand Down
Original file line number Diff line number Diff line change
@@ -1,42 +1,39 @@
@{
RootModule = "Microsoft.WinGet.Configuration.Cmdlets.dll"
ModuleVersion = '0.0.1'
CompatiblePSEditions = 'Core'
GUID = '79b6b07b-7be5-4673-9cd1-fcbe3d79ba82'
Author = 'Microsoft Corporation'
CompanyName = 'Microsoft Corporation'
Copyright = '(c) Microsoft Corporation. All rights reserved.'
Description = 'PowerShell Module for the Windows Package Manager Configuration.'
PowerShellVersion = '7.2.8'

RootModule = "Microsoft.WinGet.Configuration.Cmdlets.dll"
ModuleVersion = '0.0.1'
CompatiblePSEditions = 'Core'
GUID = '79b6b07b-7be5-4673-9cd1-fcbe3d79ba82'
Author = 'Microsoft Corporation'
CompanyName = 'Microsoft Corporation'
Copyright = '(c) Microsoft Corporation. All rights reserved.'
Description = 'PowerShell Module for the Windows Package Manager Configuration.'
PowerShellVersion = '7.2.8'
FunctionsToExport = @()
AliasesToExport = @()

# FormatsToProcess = @()
FunctionsToExport = @()
AliasesToExport = @()
CmdletsToExport = @(
"Complete-WinGetConfiguration"
"Get-WinGetConfiguration"
"Get-WinGetConfigurationDetails"
"Invoke-WinGetConfiguration"
"Start-WinGetConfiguration"
"Test-WinGetConfiguration"
"Confirm-WinGetConfiguration"
"Stop-WinGetConfiguration"
"Remove-WinGetConfigurationHistory"
"ConvertTo-WinGetConfigurationYaml"
)

CmdletsToExport = @(
"Complete-WinGetConfiguration"
"Get-WinGetConfiguration"
"Get-WinGetConfigurationDetails"
"Invoke-WinGetConfiguration"
"Start-WinGetConfiguration"
"Test-WinGetConfiguration"
"Confirm-WinGetConfiguration"
"Stop-WinGetConfiguration"
"Remove-WinGetConfigurationHistory"
"ConvertTo-WinGetConfigurationYaml"
)

PrivateData = @{
PSData = @{
Tags = @(
'WindowsPackageManager',
'WinGet'
)
ProjectUri = 'https://github.com/microsoft/winget-cli'
Prerelease = 'alpha'
PrivateData = @{
PSData = @{
Tags = @(
'WindowsPackageManager',
'WinGet'
)
ProjectUri = 'https://github.com/microsoft/winget-cli'
IconUri = 'https://aka.ms/winget-icon'
}
}
}

}

8 changes: 3 additions & 5 deletions src/PowerShell/Microsoft.WinGet.DSC/Microsoft.WinGet.DSC.psd1
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
#
# Module manifest for module 'Microsoft.WinGet.DSC'
#
# Generated by: Microsoft Corporation
#
# Generated on: 11/1/2022
# Created by: Microsoft Corporation
#

@{
Expand Down Expand Up @@ -114,13 +112,13 @@
ProjectUri = 'https://github.com/microsoft/winget-cli'

# A URL to an icon representing this module.
# IconUri = ''
IconUri = 'https://aka.ms/winget-icon'

# ReleaseNotes of this module
# ReleaseNotes = ''

# Prerelease string of this module
Prerelease = 'alpha'
# Prerelease = 'alpha'

# Flag to indicate whether the module requires explicit user acceptance for install/update/save
# RequireLicenseAcceptance = $false
Expand Down

0 comments on commit 8f425df

Please sign in to comment.