PSCoreUpdate.psd1
@{ ModuleVersion = '3.3.0' CompatiblePSEditions = @('Core') GUID = '043f72a6-8b4c-49d2-b23e-c670121378fb' Author = 'Takuya Shibata' CompanyName = 'Takuya Shibata' Copyright = '(c) Takuya Shibata. All rights reserved.' Description = 'New cross-platform PowerShell update tool' PowerShellVersion = '7.0.0' TypesToProcess = @('PSCoreUpdate.types.ps1xml') FormatsToProcess = @('PSCoreUpdate.format.ps1xml') RootModule = 'PSCoreUpdate.psm1' FunctionsToExport = @('Find-PowerShellBuildStatus', 'Find-PowerShellSupportStatus', 'Find-PowerShellRelease', 'Test-LatestVersion', 'Update-PowerShellRelease', 'Save-PowerShellAsset', 'Get-PowerShellGitHubApiToken', 'Remove-PowerShellGitHubApiToken', 'Set-PowerShellGitHubApiToken', 'Enable-PSCoreUpdateLegacyAlias') CmdletsToExport = @() VariablesToExport = '*' AliasesToExport = @('Download-PowerShellAsset') PrivateData = @{ PSData = @{ LicenseUri = 'https://github.com/stknohg/PSCoreUpdate/blob/main/LICENSE' ProjectUri = 'https://github.com/stknohg/PSCoreUpdate' } } } |